IRobotModel.cs 309 B

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