init
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events.TSRAIRGo
|
||||
{
|
||||
public class SystemSettingsSampleRateChangedEvent : PubSubEvent<SystemSettingsSampleRateArg> { }
|
||||
|
||||
public class SystemSettingsSampleRateArg
|
||||
{
|
||||
public int SampleRate { get; set; }
|
||||
}
|
||||
|
||||
public class SystemSettingsDurationChangedEvent : PubSubEvent<SystemSettingsDurationChangedArg> { }
|
||||
|
||||
public class SystemSettingsDurationChangedArg
|
||||
{
|
||||
public double Duration { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user