Adding paging to notifications grid

This commit is contained in:
rockstardev
2020-06-15 00:00:56 -05:00
parent 113869bd08
commit f072ec3a8c
3 changed files with 73 additions and 4 deletions

View File

@@ -13,6 +13,9 @@ namespace BTCPayServer.Models.NotificationViewModels
{
public class IndexViewModel
{
public int Skip { get; set; }
public int Count { get; set; }
public int Total { get; set; }
public List<NotificationViewModel> Items { get; set; }
}