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

11 lines
365 B
C#

namespace TightWiki.Models.ViewModels.Admin
{
public class PageModerateViewModel : ViewModelBase
{
public List<string> Instructions { get; set; } = new();
public List<DataModels.Page> Pages { get; set; } = new();
public string Instruction { get; set; } = string.Empty;
public int PaginationPageCount { get; set; }
}
}