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

10 lines
145 B
C#

namespace NAPS2.Ocr;
/// <summary>
/// The priority of an OCR request.
/// </summary>
public enum OcrPriority
{
Foreground,
Background
}