using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.Attributes; namespace WIDESEA_DTO.Inbound { public class CompleteStockTakeDTO { public string orderNo { get; set; } public string boxNo { get; set; } public string barcode { get; set; } public decimal actualQuantity { get; set; } public decimal stockQuantity { get; set; } } }