19 lines
431 B
C#
19 lines
431 B
C#
using Prism.Events;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DTS.Common.Events.TSRAIRGo
|
|
{
|
|
|
|
public class DASSampleRateChangedEvent : PubSubEvent<DASSampleRateArg> { }
|
|
public class DASListChangedEvent : PubSubEvent<bool> { }
|
|
|
|
public class DASSampleRateArg
|
|
{
|
|
public int SampleRate { get; set; }
|
|
}
|
|
}
|