using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SlnMesnac.WPF.DTO { public class WmsBaseLocationInfo { public string LocationCode { get; set; } public string MachineCode { get; set; } public string AgvPositionCode { get; set; } public string? ContainerCode { get; set; } public int Amount { get; set; } public string LocationStatus { get; set; } } }