diff options
| author | Paweł Bernaciak <pawelbernaciak@zohomail.eu> | 2023-12-29 09:41:56 +0100 |
|---|---|---|
| committer | Paweł Bernaciak <pawelbernaciak@zohomail.eu> | 2023-12-29 09:41:56 +0100 |
| commit | 79f5eaf40b93d64be74d8b4f1ef80d19fadbfbe1 (patch) | |
| tree | ddf121e78bdd50673379b223abfdb448c4f81291 /CoreWiki/Models/ArticleCommentListViewModel.cs | |
| parent | 1a96616699ab41bf6343bc1acc45a836c3e6caf3 (diff) | |
Diffstat (limited to 'CoreWiki/Models/ArticleCommentListViewModel.cs')
| -rw-r--r-- | CoreWiki/Models/ArticleCommentListViewModel.cs | 8 |
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 |
