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