StorageJob.cs
489 字节
using AGVControl_Steel;
namespace Model
{
public class StorageJob : Job
{
private string id;
private JobStep<StorageStep> storageStep;
public StorageJob()
{
storageStep = new JobStep<StorageStep>(StorageStep.None);
}
public override Job Execute(AgvInfo info)
{
throw new System.NotImplementedException();
}
private enum StorageStep
{
None
}
}
}