20211010_CZPM_upperpc/垂直剖面浮标临时测试软件v1.7/垂直剖面浮标临时测试软件/Model/Switch_Model.cs

45 lines
1.7 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;
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; }
}
}