9 lines
214 B
C#
9 lines
214 B
C#
namespace Inventory.Core
|
|
{
|
|
public class MonitorInfo
|
|
{
|
|
public string? Model { get; set; }
|
|
public string? SerialNumber { get; set; }
|
|
public string? PnPDeviceID { get; set; }
|
|
}
|
|
} |