123456789101112131415161718 |
- using WCS.Core;
- using WCS.Service.Systems;
- namespace WCS.Service
- {
- public class ProtocolProxy : ProtocolProxyBase
- {
- public ProtocolProxy(Device dev, ProtocolInfo info, Type protocolType) : base(dev, info, protocolType)
- {
-
- }
- protected override void DataChanged()
- {
- //Console.WriteLine($"{Device.Code} Changed");
- }
- }
- }
|