Files
CapMachine/CapMachine.Wpf/PrismEvent/ChartRtSeriesActionMsg.cs
2024-12-18 15:50:21 +08:00

27 lines
556 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.PrismEvent
{
public class ChartRtSeriesActionMsg
{
/// <summary>
/// 机器
/// </summary>
public string Machine { get; set; }
/// <summary>
/// GroupTab信息
/// </summary>
public int GroupTabIndex { get; set; }
/// <summary>
///动作消息
/// </summary>
public string ActionMsg { get; set; }
}
}