19 lines
417 B
C#
19 lines
417 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Dto.Queries
|
|
{
|
|
public class ElevagorInfoQuery
|
|
{
|
|
public string taskCode { get; set; }
|
|
public string endlocation_id { get; set; }
|
|
public string startlocation_id { get; set; }
|
|
public string sourceName { get; set; }
|
|
|
|
|
|
}
|
|
}
|