using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEA_Model.Models.System.Request
|
{
|
public class freezeByCustomerRequest
|
{
|
public string WERKS { get; set; }
|
public string WH_NUMBER { get; set; }
|
public string MATNR { get; set; }
|
public string BATCH { get; set; }
|
public string FREEZE_TYPE { get; set; }
|
|
public string EFFECT_DATE { get; set; }
|
|
public string REASON_CODE { get; set; }
|
|
public string REASON { get; set; }
|
public string EDITOR { get; set; }
|
|
}
|
|
}
|