blob: 95f684513b565aee85a80d442cdbd0475ad7ca55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
using System.Collections.Generic;
using DevHive.Services.Models.Post;
namespace DevHive.Services.Models
{
public class ReadPageServiceModel
{
public List<ReadPostServiceModel> Posts { get; set; } = new();
}
}
|