using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace IntelligentControlForsx.Model { public class StationPredict { public String StationId { get; set; } public IList StartupList { get; set; } public IList StopList { get; set; } public IList ResetList { get; set; } public IList MaintainList { get; set; } public IList CancelMaintainList { get; set; } public StationPredict(string stationId) { StationId = stationId; StartupList = new List(); ResetList = new List(); MaintainList = new List(); CancelMaintainList = new List(); StopList = new List(); } } }