Files
DP44/Common/DTS.Common/Events/TSRAIRGo/SystemSettingsSampleRateChanged.cs
2026-04-17 14:55:32 -04:00

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; }
}
}