IRobotModel.cs 349 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. using MECF.Framework.Common.CommonData;
  3. namespace Bolt.Toolkit.Wpf.Data
  4. {
  5. public interface IRobotModel : IWaferCommandModel
  6. {
  7. string RobotStation { get; set; }
  8. WaferData RobotWafer { get; set; }
  9. RobotMoveInfo MoveInfo { get; set; }
  10. Dictionary<string, StationPosition> StationPosition { get; }
  11. }
  12. }