1234567891011121314151617181920 |
- using ProductionLineMonitor.Core.Models;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class CimDto
- {
- public string Topic { get; set; }
- public DateTime Time { get; set; }
- public string IpAddress { get; set; }
- public string User { get; set; }
- public bool PLCConnect { get; set; }
- public bool EAPConnect { get; set; }
- public string Version { get; set; }
- public string EAPIP { get; set; }
- public int EAPPort { get; set; }
- }
- }
|