mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-26 19:04:47 +00:00
11 lines
334 B
C#
11 lines
334 B
C#
namespace PepperDash.Essentials.Core.DeviceInfo
|
|
{
|
|
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; }
|
|
}
|
|
} |