10 lines
175 B
C#
10 lines
175 B
C#
using System;
|
|
|
|
namespace DTS.DASLib.Service.StateMachine
|
|
{
|
|
internal class Arming : DASState
|
|
{
|
|
public override State State => State.Arming;
|
|
}
|
|
}
|