添加项目文件。
This commit is contained in:
17
UIShare/UIViewModel/MonitorChannelConfig.cs
Normal file
17
UIShare/UIViewModel/MonitorChannelConfig.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace UIShare.UIViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 监测通道持久化配置(用于 JSON 保存/恢复)。
|
||||
/// </summary>
|
||||
public class MonitorChannelConfig
|
||||
{
|
||||
/// <summary>硬件指纹(物理设备唯一标识)</summary>
|
||||
public string Fingerprint { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>监测方法名</summary>
|
||||
public string MethodName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>是否在图表上显示该通道的线图</summary>
|
||||
public bool IsDisplayed { get; set; } = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user