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