18 lines
483 B
C#
18 lines
483 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 CarryBindFloor2UpDownMachineInput
|
|
{
|
|
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; }
|
|
}
|
|
}
|