namespace UIShare.UIViewModel
{
///
/// 监测通道持久化配置(用于 JSON 保存/恢复)。
///
public class MonitorChannelConfig
{
/// 硬件指纹(物理设备唯一标识)
public string Fingerprint { get; set; } = string.Empty;
/// 监测方法名
public string MethodName { get; set; } = string.Empty;
/// 是否在图表上显示该通道的线图
public bool IsDisplayed { get; set; } = true;
}
}