using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.BasicInfo { public class ProductInfoDTO { public string Code { get; set; } public string Name { get; set; } public int Length { get; set; } public int Width { get; set; } public int Height { get; set; } } }