using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Application.PdaDto { public class LocationInfo { public string LocationCode { get; set; } = ""; public string PalletInfoCode { get; set; } = ""; public int Amount { get; set; } public int LocationStatus { get; set; } } }