CaptureQuality.cs 256 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace InABox.Avalonia.Platform.Barcodes;
  7. public enum CaptureQuality
  8. {
  9. Low = 0,
  10. Medium = 1,
  11. High = 2,
  12. Highest = 3
  13. }