BarcodeTypes.cs 428 B

123456789101112131415161718192021222324
  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 BarcodeTypes
  8. {
  9. Unknown = 0,
  10. ContactInfo = 1,
  11. Email = 2,
  12. Isbn = 3,
  13. Phone = 4,
  14. Product = 5,
  15. Sms = 6,
  16. Text = 7,
  17. Url = 8,
  18. WiFi = 9,
  19. GeographicCoordinates = 10,
  20. CalendarEvent = 11,
  21. DriversLicense = 12
  22. }