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