20 lines
601 B
C#
20 lines
601 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace RGD.HaiRouAPI.HaiRouModel
|
|||
|
{
|
|||
|
public class ContainerAdds
|
|||
|
{
|
|||
|
private List<containerAdds> ContainerAddss;
|
|||
|
|
|||
|
public List<containerAdds> containerAdds { get => ContainerAddss; set => ContainerAddss = value; }
|
|||
|
}
|
|||
|
|
|||
|
public class containerAdds
|
|||
|
{
|
|||
|
private string ContainerCode;
|
|||
|
private string ContainerTypeCode;
|
|||
|
|
|||
|
public string containerCode { get => ContainerCode; set => ContainerCode = value; }
|
|||
|
public string containerTypeCode { get => ContainerTypeCode; set => ContainerTypeCode = value; }
|
|||
|
}
|
|||
|
}
|