123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using WCS.Core;
- 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");
- }
- }
- }
|