| 123456789101112131415 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace InABox.Avalonia.Platform.Barcodes;public enum CaptureQuality{    Low = 0,    Medium = 1,    High = 2,    Highest = 3}
 |