Files
2026-04-17 14:55:32 -04:00

10 lines
179 B
C#

using System;
namespace DTS.DASLib.Service.StateMachine
{
internal class Download : DASState
{
public override State State => State.Download;
}
}