LANCommander/LANCommander.Server/Models/RoleViewModel.cs
2024-08-04 18:44:33 -05:00

11 lines
250 B
C#

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