9 lines
193 B
C#
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
|
|
}
|
|
} |