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