LANCommander/LANCommander.Server/Models/RoleViewModel.cs

12 lines
250 B
C#
Raw Permalink Normal View History

2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Models
{
public class RoleViewModel
{
2023-12-04 17:25:43 -06:00
public Guid Id { get; set; }
public string Name { get; set; }
public int Users { get; set; }
public int Collections { get; set; }
}
}