mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
13 lines
300 B
C#
13 lines
300 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class UserViewModel
|
|
{
|
|
public string Id { get; set; }
|
|
public string Email { get; set; }
|
|
[Display(Name = "Is admin")]
|
|
public bool IsAdmin { get; set; }
|
|
}
|
|
}
|