2020-05-03 17:42:01 -06:00
|
|
|
using System.Collections.Generic;
|
2020-11-17 13:46:23 +01:00
|
|
|
using BTCPayServer.Abstractions.Contracts;
|
2020-05-03 17:42:01 -06:00
|
|
|
|
2020-05-27 18:35:25 -05:00
|
|
|
namespace BTCPayServer.Models.NotificationViewModels
|
2020-05-03 17:42:01 -06:00
|
|
|
{
|
2020-12-12 07:21:37 +01:00
|
|
|
public class IndexViewModel : BasePagingViewModel
|
2020-05-03 17:42:01 -06:00
|
|
|
{
|
2020-05-28 16:19:02 -05:00
|
|
|
public List<NotificationViewModel> Items { get; set; }
|
2022-05-02 16:35:28 +09:00
|
|
|
|
|
|
|
public override int CurrentPageCount => Items.Count;
|
2020-05-28 16:19:02 -05:00
|
|
|
}
|
2020-05-03 17:42:01 -06:00
|
|
|
}
|