You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
743 B
26 lines
743 B
namespace WMS_GIRAF_Interface.Models;
|
|
|
|
public class UpdateProducts
|
|
{
|
|
|
|
public class Rootobject
|
|
{
|
|
public string asrsIdentifier { get; set; }
|
|
public string sender { get; set; }
|
|
public string updateRequestId { get; set; }
|
|
public Product[] products { get; set; }
|
|
}
|
|
|
|
public class Product
|
|
{
|
|
public string identifier { get; set; }
|
|
public bool isBlocked { get; set; }
|
|
public bool isPriority { get; set; }
|
|
public string productClass { get; set; }
|
|
public DateTime maturationDate { get; set; }
|
|
public DateTime expirationDate { get; set; }
|
|
public DateTime highPriorityDate { get; set; }
|
|
public string newIdentifier { get; set; }
|
|
}
|
|
|
|
}
|