using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos.Cargoo
{
///
///
///
public class CargooShipmentResultDto
{
///
///
///
public string messageId { get; set; }
///
///
///
public string timestamp { get; set; }
///
///
///
public List data { get; set; }
}
public class CargooShipmentResultDataDto
{
///
///
///
public string id { get; set; }
///
///
///
public string reference { get; set; }
///
///
///
public int code { get; set; }
///
///
///
public string description { get; set; }
///
///
///
public Nullable date { get; set; }
///
///
///
public string cargooReference { get; set; }
}
}