using DTS.Common.Enums; namespace DTS.Common.Interface.Sensors { /// /// this interface describes the default properties and methods for a digital output /// It's intended to allow interaction with digital output defaults /// 13574 Design for Default squib config file settings /// public interface IDigitalOutDefaults { /// /// the default output mode for digital outputs /// DigitalOutputModes OutputMode { get; set; } /// /// the default delay in ms for digital outputs /// double DelayMS { get; set; } /// /// the default for whether to limit output duration or not /// bool LimitDuration { get; set; } /// /// the default duration in ms to limit duration if limiting duration /// double DurationMS { get; set; } } }