Files
LeafWeb/Core/Remote/PiscalStatus.cs
T
2016-04-06 13:00:26 -04:00

9 lines
193 B
C#

namespace LeafWeb.Core.Remote
{
public enum PiscalStatus
{
NotStarted, // Process has not been started
Running, // Process is currently executing
Complete, // Process has completed
}
}