namespace Barcode.Host.Shared.KeyboardMouse; public class LinuxDevice { public LinuxDeviceIdentifier Identifier { get; set; } = new(); public string? Name { get; set; } public string? PhysicalPath { get; set; } public string? SysFsPath { get; set; } public string? UniqueIdentificationCode { get; set; } public List Handlers { get; set; } = new(); public List Bitmaps { get; set; } = new(); }