SortingBranchWorld.cs 283 B

123456789101112131415
  1. using System.ComponentModel;
  2. namespace WCS.WorkEngineering.Worlds
  3. {
  4. /// <summary>
  5. /// 分拣支线
  6. /// </summary>
  7. [Description("分拣支线")]
  8. public class SortingBranchWorld : MainWorld
  9. {
  10. public SortingBranchWorld()
  11. {
  12. }
  13. }
  14. }