45 lines
1.7 KiB
C#
45 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace 垂直剖面浮标临时测试软件.Model
|
|
{
|
|
public class Switch_Model
|
|
{
|
|
public bool FB_CH4_Power { get; set; }
|
|
public bool FB_CH4_Data { get; set; }
|
|
public bool FB_CO2_Power { get; set; }
|
|
public bool FB_CO2_Data { get; set; }
|
|
public bool FB_METS_Power { get; set; }
|
|
public bool FB_METS_Data { get; set; }
|
|
public bool FB_Sailing_CH4_Power { get; set; }
|
|
public bool FB_Sailing_CH4_Data { get; set; }
|
|
public bool FB_Air_Power { get; set; }
|
|
public bool FB_Air_Data { get; set; }
|
|
public bool FB_CTD_Power { get; set; }
|
|
public bool FB_CTD_Data { get; set; }
|
|
public bool FB_Attitude_Power { get; set; }
|
|
public bool FB_Attitude_Data { get; set; }
|
|
public bool FB_Adcp_Power { get; set; }
|
|
public bool FB_Adcp_Data { get; set; }
|
|
public bool JBH_CH4_Power { get; set; }
|
|
public bool JBH_CH4_Data { get; set; }
|
|
public bool JBH_CO2_Power { get; set; }
|
|
public bool JBH_CO2_Data { get; set; }
|
|
public bool JBH_METS_Power { get; set; }
|
|
public bool JBH_METS_Data { get; set; }
|
|
public bool JBH_Attitude_Power { get; set; }
|
|
public bool JBH_Attitude_Data { get; set; }
|
|
public bool JBH_CTD_Power { get; set; }
|
|
public bool JBH_CTD_Data { get; set; }
|
|
public bool JBH_Adcp_Power { get; set; }
|
|
public bool JBH_Adcp_Data { get; set; }
|
|
public bool QB_Adcp300_Power { get; set; }
|
|
public bool QB_Adcp300_Data { get; set; }
|
|
public bool QB_Adcp150_Power { get; set; }
|
|
public bool QB_Adcp150_Data { get; set; }
|
|
}
|
|
}
|