27 lines
556 B
C#
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; }
|
|
}
|
|
}
|