| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.LgResMgt.Mcms
- {
- public interface iCommunication
- {
- void Start();
- void Stop();
- event ReceiveDataHandler ReceiveData;
- void ChangeProtocol(IProtocol iProtocol);
- bool Status { get; }
- bool Show { get; set; }
- string WeightValue { get; set; }
- }
- }
|