naps2/NAPS2.Escl/EsclJobState.cs
2023-12-09 17:17:05 -08:00

11 lines
134 B
C#

namespace NAPS2.Escl;
public enum EsclJobState
{
Unknown,
Pending,
Processing,
Completed,
Canceled,
Aborted
}