Skip to content

Commit

Permalink
Added a class to display information about devices connected to a PC …
Browse files Browse the repository at this point in the history
…with a serial port
  • Loading branch information
TTLC198 committed Nov 11, 2023
1 parent e13b54c commit 88bf3ee
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions HSMonitor/Models/DeviceInfo.cs
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 88bf3ee

Please sign in to comment.