btcpayserver/BTCPayServer/Models/NotificationViewModels/IndexViewModel.cs

16 lines
360 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
{
2020-06-15 00:00:56 -05:00
public int Skip { get; set; }
public int Count { get; set; }
public int Total { get; set; }
public List<NotificationViewModel> Items { get; set; }
}
2020-05-03 17:42:01 -06:00
}