LANCommander/LANCommander/Models/RoleViewModel.cs

10 lines
206 B
C#

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