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

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