LANCommander.PlaynitePlugin/LANCommander/Models/UserViewModel.cs
2023-01-17 17:57:12 -06:00

10 lines
261 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; }
}
}