LANCommander/LANCommander.Server/Models/UserViewModel.cs

12 lines
311 B
C#
Raw Normal View History

2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Models
2023-01-17 17:21:38 -06:00
{
public class UserViewModel
{
public Guid Id { get; set; }
public string UserName { get; set; }
public IEnumerable<string> Roles { get; set; }
2023-01-17 17:57:12 -06:00
public long SavesSize { get; set; }
2023-08-11 13:30:29 -05:00
public bool Approved { get; set; }
2023-01-17 17:21:38 -06:00
}
}