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 StationPosition { get; } } }