LANCommander.PlaynitePlugin/LANCommander/Models/UserViewModel.cs
2023-08-11 13:30:29 -05:00

11 lines
304 B
C#

namespace LANCommander.Models
{
public class UserViewModel
{
public Guid Id { get; set; }
public string UserName { get; set; }
public IEnumerable<string> Roles { get; set; }
public long SavesSize { get; set; }
public bool Approved { get; set; }
}
}