aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Feed/ReadPageWebModel.cs
blob: 839aaa6d6ef82fbca930ca4b91877141a6850f28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;
using DevHive.Web.Models.Post;

namespace DevHive.Web.Controllers
{
	public class ReadPageWebModel
	{
		public List<ReadPostWebModel> Posts { get; set; } = new();
	}
}