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.
 
 

33 lines
1.4 KiB

namespace Transfast.Model.Receiver
{
public class ReceiverResponse
{
public string FullName { get; set; }
public string FullNameOtherLanguage { get; set; }
public string FirstName { get; set; }
public string FirstNameOtherLanguage { get; set; }
public string SecondName { get; set; }
public string SecondNameOtherLanguage { get; set; }
public string LastName { get; set; }
public string LastNameOtherLanguage { get; set; }
public string SecondLastName { get; set; }
public string SecondLastNameOtherLanguage { get; set; }
public string CompleteAddress { get; set; }
public string CompleteAddressOtherLanguage { get; set; }
public string MobilePhone { get; set; }
public string HomePhone { get; set; }
public string WorkPhone { get; set; }
public string Email { get; set; }
public string DateOfBirth { get; set; }
public string IsIndividual { get; set; }
public string Notes { get; set; }
public string NotesOtherLanguage { get; set; }
public string CountryIsoCode { get; set; }
public string CountryName { get; set; }
public string StateName { get; set; }
public string StateId { get; set; }
public string CityName { get; set; }
public string CityId { get; set; }
public string TownName { get; set; }
}
}