add DeviceInfo class

This commit is contained in:
Andrew Welker
2020-11-09 12:10:44 -07:00
parent 47af06578a
commit e37fb33afe

View File

@@ -2,6 +2,10 @@
{
public class DeviceInfo
{
public string HostName { get; set; }
public string IpAddress { get; set; }
public string MacAddress { get; set; }
public string SerialNumber { get; set; }
public string FirmwareVersion { get; set; }
}
}