using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StartServerWPF.Models { public class StationControlModel { public string Num { get; set; } public string VpnName { get; set; } public string NetWork { get; set;} public string Location { get; set; } public bool Enable { get; set; } = true; public bool Visible { get; set; } = true; public Coordinate3D Coordinate { get; set; } public double Sens { get; set; } public DateTime BeginUseTime { get; set; } public DateTime StopUseTime { get; set;} } }