19 lines
363 B
C#
19 lines
363 B
C#
using CapMachine.Wpf.Models;
|
|
using Prism.Events;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Wpf.PrismEvent
|
|
{
|
|
/// <summary>
|
|
/// 曲线实时传输数据实时值
|
|
/// </summary>
|
|
public class ChartRtEvent:PubSubEvent<List<ChartRtValue>>
|
|
{
|
|
|
|
}
|
|
}
|