12 lines
327 B
C#
12 lines
327 B
C#
using ZelWiki.Models.DataModels;
|
|
|
|
namespace ZelWiki.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; }
|
|
}
|
|
}
|