| using System.Collections.Generic;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; }	}}
 |