21 lines
499 B
C#
21 lines
499 B
C#
|
|
using System;
|
|
|
|
namespace Simulator.Data
|
|
{
|
|
[Serializable]
|
|
public class ASRSDataClass : ComponentDataBase
|
|
{
|
|
public string name;
|
|
public string label;
|
|
public rack_layout asrs_layout;
|
|
public ReceivePortPosition receive_port_position = new ReceivePortPosition();
|
|
public ReceivePortPosition shipping_port_position = new ReceivePortPosition();
|
|
}
|
|
|
|
[Serializable]
|
|
public class ReceivePortPosition
|
|
{
|
|
public Position position;
|
|
}
|
|
} |