Paging on List Users page for big hosting providers like Esky (#905)

This commit is contained in:
Rockstar Developer
2019-07-19 02:50:17 -05:00
committed by Nicolas Dorier
parent 109e576811
commit 4716b704d4
3 changed files with 90 additions and 52 deletions

View File

@@ -10,25 +10,16 @@ namespace BTCPayServer.Models.ServerViewModels
public class UserViewModel
{
public string Id { get; set; }
public string Name
{
get; set;
}
public string Email
{
get; set;
}
public string Name { get; set; }
public string Email { get; set; }
}
public int Skip { get; set; }
public int Count { get; set; }
public int Total { get; set; }
public string StatusMessage { get; set; }
public string StatusMessage
{
get; set;
}
public List<UserViewModel> Users
{
get; set;
} = new List<UserViewModel>();
public List<UserViewModel> Users { get; set; } = new List<UserViewModel>();
}
}