1234567891011121314151617 |
- using System.Collections.Generic;
- using MECF.Framework.Common.CommonData;
- namespace Bolt.Toolkit.Wpf.Data
- {
- public interface IRobotModel : IWaferCommandModel
- {
- string RobotStation { get; set; }
- WaferData RobotWafer { get; set; }
- RobotMoveInfo MoveInfo { get; set; }
- Dictionary<string, StationPosition> StationPosition { get; }
- }
- }
|