You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
704 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace MaterialTraceability.WebService.Param
{
public class ResourceSlotConfigurationSetupForJITServiceParam : BaseWebServiceParam
{
public string site { get; set; }
public string resource { get; set; }
public string operation { get; set; }
public string barcodeId { get; set; }
public string barcodeType { get; set; }
public string qty { get; set; }
public string activityId { get; set; }
public string mountingPoint { get; set; }
public string emptyTray { get; set; }
}
}