CimDto.cs 583 B

1234567891011121314151617181920
  1. using ProductionLineMonitor.Core.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace ProductionLineMonitor.Core.Dtos
  6. {
  7. public class CimDto
  8. {
  9. public string Topic { get; set; }
  10. public DateTime Time { get; set; }
  11. public string IpAddress { get; set; }
  12. public string User { get; set; }
  13. public bool PLCConnect { get; set; }
  14. public bool EAPConnect { get; set; }
  15. public string Version { get; set; }
  16. public string EAPIP { get; set; }
  17. public int EAPPort { get; set; }
  18. }
  19. }