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