StationExtension.cs 258 B

123456789101112
  1. using WCS.Core;
  2. using WCS.Entity.Protocol.Station;
  3. namespace WCS.WorkEngineering.Extensions
  4. {
  5. public class Station : Device<IStation520, IStation521, IStation523>
  6. {
  7. public Station(Device device) : base(device)
  8. {
  9. }
  10. }
  11. }