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