Support_WD_DeviceInfo.cs 724 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HNWD.Pregrant.Model
  7. {
  8. public class Support_WD_DeviceInfo : ModelBase
  9. {
  10. public string id {get;set;}
  11. public string deviceName {get;set;}
  12. public string deviceStatus {get;set;}
  13. public string deviceSipIp {get;set;}
  14. public string deviceSipId {get;set;}
  15. public string deviceSipPassWord {get;set;}
  16. public string deviceSipStatus {get;set;}
  17. public string deviceHostingID {get;set;}
  18. public string deviceCallTimeOut {get;set;}
  19. public string hospital {get;set;}
  20. public string department {get;set;}
  21. }
  22. }