btcpayserver/BTCPayServer/Models/NotificationViewModels/IndexViewModel.cs

13 lines
326 B
C#
Raw Normal View History

2020-05-03 17:42:01 -06:00
using System.Collections.Generic;
using BTCPayServer.Abstractions.Contracts;
2020-05-03 17:42:01 -06:00
namespace BTCPayServer.Models.NotificationViewModels
2020-05-03 17:42:01 -06:00
{
public class IndexViewModel : BasePagingViewModel
2020-05-03 17:42:01 -06:00
{
public List<NotificationViewModel> Items { get; set; }
public override int CurrentPageCount => Items.Count;
}
2020-05-03 17:42:01 -06:00
}