2025-10-16 10:24:29 +09:00
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Simulator.Data
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class ASRSDataClass : ComponentDataBase
|
|
|
|
|
{
|
|
|
|
|
public string name;
|
|
|
|
|
public string label;
|
2025-11-04 11:02:02 +09:00
|
|
|
public rack_layout asrs_layout;
|
2025-12-08 10:59:29 +09:00
|
|
|
public ReceivePortPosition receive_port_position = new ReceivePortPosition();
|
|
|
|
|
public ReceivePortPosition shipping_port_position = new ReceivePortPosition();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class ReceivePortPosition
|
|
|
|
|
{
|
|
|
|
|
public Position position;
|
2025-10-16 10:24:29 +09:00
|
|
|
}
|
|
|
|
|
}
|