blob: f4293130044769f1a540b405bd74b3a2d37960cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
using System.Collections.Generic;
using DevHive.Web.Models.Post;
namespace DevHive.Web.Models.Comment
{
public class ReadPageWebModel
{
public List<ReadPostWebModel> Posts { get; set; } = new();
}
}
|