blob: 881fc018109064064d46d6e036fcdab3b81dda0c (
plain)
1
2
3
4
5
6
7
8
|
namespace CoreWiki.Models;
public class ArticleCommentListViewModel
{
public IEnumerable<Comment> Comments { get; init; }
public string Slug { get; init; }
public int PageNumber { get; init; }
}
|