init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using DTS.Common.Enums.Sensors;
|
||||
|
||||
namespace DTS.DASLib.Service.StateMachine
|
||||
{
|
||||
public class GlobalStatusParameters : IStatusParameters
|
||||
{
|
||||
public bool AllowUDPMulticast { get; set; } = true;
|
||||
public bool DisableAutoSense { get; set; } = SensorConstants.DisableAutoSense;
|
||||
|
||||
public void Reset()
|
||||
{
|
||||
AllowUDPMulticast = true;
|
||||
DisableAutoSense = SensorConstants.DisableAutoSense;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user