MESInfo.cs 403 B

12345678910111213141516
  1. 
  2. using System.Collections.Generic;
  3. namespace PLCCommunication.Proxy
  4. {
  5. public class MESInfo
  6. {
  7. public string IP = null;
  8. public string Port= null;
  9. public string ServiceName = null;
  10. public string AccountCode = null;
  11. public string UserCode = null;
  12. public string Password = null;
  13. public List<string> Procedures = new List<string>();
  14. }
  15. }