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.
 
 

23 lines
873 B

namespace Transfast.Model.Sender
{
public class TFSenderResponse
{
public string Name { get; set; }
public string NameOtherLanguage { get; set; }
public string Address { get; set; }
public string PhoneMobile { get; set; }
public bool IsIndividual { get; set; }
public string CountryIsoCode { get; set; }
public string CountryName { get; set; }
public string StateId { get; set; }
public string CityName { get; set; }
public int CityId { get; set; }
public string TypeOfId { get; set; }
public string IdNumber { get; set; }
public string IdExpiryDate { get; set; }
public string DateOfBirth { get; set; }
public string Email { get; set; }
public string NationalityIsoCode { get; set; }
public int SenderId { get; set; }
}
}