yavsc/src/Yavsc.Server/ViewModels/Administration/RoleInfo.cs
2024-11-06 13:00:34 +00:00

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; }
}
}