16 lines
383 B
C#
16 lines
383 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 AddOutinStockDetailInput
|
|
{
|
|
public WmsDistaskH disTask { get; set; }
|
|
public string? start_warehouse_id { get; set; }
|
|
public string? end_warehouse_id { get; set; }
|
|
}
|
|
}
|