9 lines
207 B
C#
9 lines
207 B
C#
namespace Yavsc.ViewModels.Administration
|
|
{
|
|
public class RoleInfo
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int UserCount { get; set; }
|
|
}
|
|
}
|