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