SRMExtension.cs 315 B

123456789101112131415
  1. using WCS.Core;
  2. using WCS.Entity.Protocol.SRM;
  3. namespace WCS.WorkEngineering.Extensions
  4. {
  5. /// <summary>
  6. /// 堆垛机扩展
  7. /// </summary>
  8. public class SRM : Device<ISRM520, ISRM521, ISRM537>
  9. {
  10. public SRM(Device device, World world) : base(device, world)
  11. {
  12. }
  13. }
  14. }