yavsc/src/Yavsc.Server/ViewModels/Administration/RoleInfo.cs

9 lines
207 B
C#
Raw Normal View History

namespace Yavsc.ViewModels.Administration
{
public class RoleInfo
2024-11-06 13:00:34 +00:00
{
public string Id { get; set; }
public string Name { get; set; }
public int UserCount { get; set; }
}
}