From e37fb33afe57c262721fcbf6b1ab54f07cb680d3 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Mon, 9 Nov 2020 12:10:44 -0700 Subject: [PATCH] add DeviceInfo class --- .../PepperDashEssentialsBase/Device Info/DeviceInfo.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Device Info/DeviceInfo.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Device Info/DeviceInfo.cs index 1b235ed2..9b03ec11 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Device Info/DeviceInfo.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Device Info/DeviceInfo.cs @@ -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; } } } \ No newline at end of file