10 lines
181 B

2 years ago
namespace SiNan.Model.Dto
{
public class ListResponse<T> where T : class
{
public List<T> ItemList { get; set; }
public long Count { get; set; }
}
}