DeviceInfo.cs 507 B

1234567891011121314151617
  1. using GeneralData;
  2. namespace Device;
  3. public class DeviceInfo
  4. {
  5. public DeviceModel DeviceModel { get; set; }
  6. public string? DeviceSubModel { get; set; }
  7. public string? DeviceName { get; set; }
  8. public string? Position { get; set; }
  9. public string? SoftwareVersion { get; set; }
  10. public Guid? Guid { get; set; }
  11. public string? IP { get; set; }
  12. public ushort Port { get; set; }
  13. public string? DBConnectionString { get; set; }
  14. public DateTime UpdateTime { get; set; }
  15. }