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