14 lines
276 B
C#
14 lines
276 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
|
{
|
|
public class CarryCodeUnbindCodeInput
|
|
{
|
|
public string? carry_code_id { get; set; }
|
|
}
|
|
}
|