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