-
- using System.Collections.Generic;
- namespace PLCCommunication.Proxy
- {
- public class MESInfo
- {
- public string IP = null;
- public string Port= null;
- public string ServiceName = null;
- public string AccountCode = null;
- public string UserCode = null;
- public string Password = null;
- public List<string> Procedures = new List<string>();
- }
- }
|