18 lines
350 B
C#
18 lines
350 B
C#
using Prism.Events;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Wpf.PrismEvent
|
|
{
|
|
/// <summary>
|
|
/// Chart 设置是否启用的功能
|
|
/// </summary>
|
|
public class ChartSetEnableEvent : PubSubEvent<ChartSetEnableMsg>
|
|
{
|
|
|
|
}
|
|
}
|