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

12 lines
331 B
C#

using TightWiki.Models.DataModels;
namespace TightWiki.Models.ViewModels.Page
{
public class PageCommentsViewModel : ViewModelBase
{
public List<PageComment> Comments { get; set; } = new();
public string Comment { get; set; } = string.Empty;
public int PaginationPageCount { get; set; }
}
}