summaryrefslogtreecommitdiff
path: root/CoreWiki/Models/ArticleCommentListViewModel.cs
diff options
context:
space:
mode:
authorPaweł Bernaciak <pawelbernaciak@zohomail.eu>2023-12-29 09:41:56 +0100
committerPaweł Bernaciak <pawelbernaciak@zohomail.eu>2023-12-29 09:41:56 +0100
commit79f5eaf40b93d64be74d8b4f1ef80d19fadbfbe1 (patch)
treeddf121e78bdd50673379b223abfdb448c4f81291 /CoreWiki/Models/ArticleCommentListViewModel.cs
parent1a96616699ab41bf6343bc1acc45a836c3e6caf3 (diff)
Cywilizowany tailwindHEADmaster
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