DeviceModel.cs 408 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. namespace GCAS.Model
  4. {
  5. public class DeviceModel
  6. {
  7. public int Id { get; set; }
  8. public string Ip { get; set; }
  9. public string Name { get; set; }
  10. public int Port { get; set; }
  11. public string Code { get; set; }
  12. public int TareWeight { get; set; }
  13. public DateTime Time { get; set; }
  14. }
  15. }