19 lines
499 B
C#
19 lines
499 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|