using GeneralData; namespace Device; public class DeviceInfo { public DeviceModel DeviceModel { get; set; } public string? DeviceSubModel { get; set; } public string? DeviceName { get; set; } public string? Position { get; set; } public string? SoftwareVersion { get; set; } public Guid? Guid { get; set; } public string? IP { get; set; } public ushort Port { get; set; } public string? DBConnectionString { get; set; } public DateTime UpdateTime { get; set; } }