LANCommander.PlaynitePlugin/LANCommander/Models/RoleViewModel.cs
2023-12-04 17:25:43 -06:00

11 lines
243 B
C#

namespace LANCommander.Models
{
public class RoleViewModel
{
public Guid Id { get; set; }
public string Name { get; set; }
public int Users { get; set; }
public int Collections { get; set; }
}
}