20211010_CZPM_upperpc/垂直剖面动态观测系统/Model/ControlModel.cs

54 lines
1.3 KiB
C#
Raw Normal View History

2023-07-27 03:01:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using .Common;
namespace .Model
{
public class ControlModel : NotifyBase
{
//启动时
private int _start_Hour;
public int Start_Hour
{
get { return _start_Hour; }
set { _start_Hour = value; this.DoNotify(); }
}
//启动分
private int _start_Min;
public int Start_Min
{
get { return _start_Min; }
set { _start_Min = value; this.DoNotify(); }
}
//上传周期
private int _upload_Cycle;
public int Upload_Cycle
{
get { return _upload_Cycle; }
set { _upload_Cycle = value; this.DoNotify(); }
}
//工作时间
private int _work_Time;
public int Work_Time
{
get { return _work_Time; }
set { _work_Time = value; this.DoNotify(); }
}
//Adcp精度
private int _adcp_Accuracy;
public int Adcp_Accuracy
{
get { return _adcp_Accuracy; }
set { _adcp_Accuracy = value; this.DoNotify(); }
}
}
}