DespatchSupplierInfo
public class DespatchSupplierInfoDto
{
public List<IDTypeDto> PartyIdentifications { get; set; }
public string WebSite { get; set; }
public string Address { get; set; }
public string District { get; set; }
public string City { get; set; }
public string PostalCode { get; set; }
public string Country { get; set; }
public string TaxOffice { get; set; }
public string Phone { get; set; }
public string Email { get; set; }
public string Fax { get; set; }
public string TaxNumber { get; set; }
public string Name { get; set; }
} public class IDTypeDto
{
public string SchemeID { get; set; }
public string Value { get; set; }
}