添加项目文件。
This commit is contained in:
11
TightWiki.Models/ViewModels/Page/PageCommentsViewModel.cs
Normal file
11
TightWiki.Models/ViewModels/Page/PageCommentsViewModel.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user