naps2/NAPS2.Sdk/Ocr/OcrRequestState.cs
2022-06-17 00:14:07 -07:00

13 lines
185 B
C#

namespace NAPS2.Ocr;
/// <summary>
/// The state of the OcrRequest.
/// </summary>
internal enum OcrRequestState
{
Pending,
Processing,
Completed,
Canceled,
Error
}