You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
742 B

namespace Znyc.CloudCar.Model.ViewModels.ReportsCallBack
{
/// <summary>
/// 分页信息输出
/// </summary>
public class PageOutput<T>
{
/// <summary>
/// 数据总数
/// </summary>
public long Total { get; set; } = 0;
/// <summary>
/// 数据
/// </summary>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“List”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public IList<T> List { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“List”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
}
}