123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace InABox.Avalonia.Platform.Barcodes;
- public enum BarcodeTypes
- {
- Unknown = 0,
- ContactInfo = 1,
- Email = 2,
- Isbn = 3,
- Phone = 4,
- Product = 5,
- Sms = 6,
- Text = 7,
- Url = 8,
- WiFi = 9,
- GeographicCoordinates = 10,
- CalendarEvent = 11,
- DriversLicense = 12
- }
|