using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NEIntelligentControl2.Models.Alarm
{
///
/// 报警分页信息
///
public class AlarmPage
{
///
/// 总数
///
public long Total { get; set; }
///
/// 大小
///
public int Size { get; set; }
public int Current { get; set; }
public bool SearchCount { get; set; }
public int Pages { get; set; }
public List Records { get; set; }
}
}