btcpayserver/BTCPayServer/Models/NotificationViewModels/IndexViewModel.cs
2022-05-02 16:35:28 +09:00

12 lines
326 B
C#

using System.Collections.Generic;
using BTCPayServer.Abstractions.Contracts;
namespace BTCPayServer.Models.NotificationViewModels
{
public class IndexViewModel : BasePagingViewModel
{
public List<NotificationViewModel> Items { get; set; }
public override int CurrentPageCount => Items.Count;
}
}