Files
ZelWiki/TightWiki.Models/ViewModels/Admin/RoleViewModel.cs
2025-01-22 23:31:03 +08:00

13 lines
357 B
C#

using TightWiki.Models.DataModels;
namespace TightWiki.Models.ViewModels.Admin
{
public class RoleViewModel : ViewModelBase
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public List<AccountProfile> Users { get; set; } = new();
public int PaginationPageCount { get; set; }
}
}