diff --git a/HSMonitor/Models/DeviceInfo.cs b/HSMonitor/Models/DeviceInfo.cs new file mode 100644 index 0000000..0b2ec34 --- /dev/null +++ b/HSMonitor/Models/DeviceInfo.cs @@ -0,0 +1,9 @@ +namespace HSMonitor.Models; + +public class DeviceInfo +{ + public string? PortName { get; set; } + public string? Description { get; set; } + public string? BusDescription { get; set; } + public bool IsHsMonitorDevice { get; set; } = false; +} \ No newline at end of file