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