using System.Collections.Generic;
namespace Learn.Archives.Core.Model.Dto
{
public class PageResult<T>
/// <summary>
/// 数据
/// </summary>
public List<T> Data { get; set; }
/// 总条数
public int Total { get; set; }
}