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

22 lines
437 B
C#

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