11 lines
332 B
C#
11 lines
332 B
C#
namespace RGD.HaiRouAPI.HaiRouModel
|
|
{
|
|
public class LoadContainerFinish
|
|
{
|
|
private string SlotCode;
|
|
private string ContainerCode;
|
|
|
|
public string slotCode { get => SlotCode; set => SlotCode = value; }
|
|
public string containerCode { get => ContainerCode; set => ContainerCode = value; }
|
|
}
|
|
} |