Files
DP44/Common/DTS.Common/.svn/pristine/a8/a86f0a0e8306d0c477ff4bc0c943b31131d83f5d.svn-base

19 lines
499 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
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; }
}
}