This commit is contained in:
2024-12-18 15:50:21 +08:00
parent 684973e6b7
commit b2c54119ea
214 changed files with 65908 additions and 8461 deletions

View File

@@ -0,0 +1,25 @@
namespace CapMachine.Wpf.PrismEvent
{
public class ChartSetEnableMsg
{
/// <summary>
/// 机器
/// </summary>
public string Machine { get; set; }
/// <summary>
/// Group信息
/// </summary>
public int GroupTabIndex { get; set; }
/// <summary>
///ChartSetInfo信息
/// </summary>
public string ChartSetInfo { get; set; }
/// <summary>
///是否启用内容
/// </summary>
public bool Enable { get; set; }
}
}