mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 18:06:08 +01:00
33 lines
462 B
C#
33 lines
462 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 Name
|
|
{
|
|
get; set;
|
|
}
|
|
public string Email
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
|
|
public string StatusMessage
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public List<UserViewModel> Users
|
|
{
|
|
get; set;
|
|
} = new List<UserViewModel>();
|
|
}
|
|
|
|
}
|