using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Dto.Inputs { public class CarryBatchBindInput { public List carryBindInputs { get; set; } } public class CarryBindInput { public string? org { get; set; } public string? create_id { get; set; } public string? carry_id { get; set; } public string? carry_code { get; set; } public string? carrystd_id { get; set; } public string? membercarry_id { get; set; } public string? membercarry_code { get; set; } public string? source_id { get; set; } public string? source_code { get; set; } } }