You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
672 B
C#
23 lines
672 B
C#
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;}
|
|
}
|
|
}
|