using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using IntelligentControlForsx.MyControls;
namespace IntelligentControlForsx.Service.HomeFormInfo.Domain
{
public class RightInfo
{
///
/// 安全生产天数
///
public string SafetyDayCount { set; get; }
public IList InfoList { set; get; }
#region 折线图相关数据
public DateTime[] DateTimeArray { set; get; }
public Double[] SpeedArray { set; get; }
public Double[] PowerArray { set; get; }
#endregion
}
}