using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEAWCS_DTO.PlacedBlockDTO
|
{
|
public struct ContainerSize
|
{
|
public int Length { get; set; }
|
public int Width { get; set; }
|
public int Height { get; set; }
|
|
public ContainerSize(int length, int width, int height)
|
{
|
Length = length;
|
Width = width;
|
Height = height;
|
}
|
}
|
}
|