summaryrefslogtreecommitdiff
path: root/CoreWiki/Models/ArticleCommentListViewModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'CoreWiki/Models/ArticleCommentListViewModel.cs')
-rw-r--r--CoreWiki/Models/ArticleCommentListViewModel.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/CoreWiki/Models/ArticleCommentListViewModel.cs b/CoreWiki/Models/ArticleCommentListViewModel.cs
new file mode 100644
index 0000000..881fc01
--- /dev/null
+++ b/CoreWiki/Models/ArticleCommentListViewModel.cs
@@ -0,0 +1,8 @@
+namespace CoreWiki.Models;
+
+public class ArticleCommentListViewModel
+{
+ public IEnumerable<Comment> Comments { get; init; }
+ public string Slug { get; init; }
+ public int PageNumber { get; init; }
+} \ No newline at end of file