mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
24 lines
596 B
C#
24 lines
596 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class UsersViewModel
|
|
{
|
|
public class UserViewModel
|
|
{
|
|
public string Id { 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 List<UserViewModel> Users { get; set; } = new List<UserViewModel>();
|
|
}
|
|
|
|
}
|