using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO.Basic { public class palletCodeInfoDTO { public string PalletCode { get; set; } public int Width { get; set; } public int Height { get; set; } public int Size { get; set; } public int Code { get; set; } } }