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.

22 lines
873 B

  1. namespace Transfast.Model.Sender
  2. {
  3. public class TFSenderResponse
  4. {
  5. public string Name { get; set; }
  6. public string NameOtherLanguage { get; set; }
  7. public string Address { get; set; }
  8. public string PhoneMobile { get; set; }
  9. public bool IsIndividual { get; set; }
  10. public string CountryIsoCode { get; set; }
  11. public string CountryName { get; set; }
  12. public string StateId { get; set; }
  13. public string CityName { get; set; }
  14. public int CityId { get; set; }
  15. public string TypeOfId { get; set; }
  16. public string IdNumber { get; set; }
  17. public string IdExpiryDate { get; set; }
  18. public string DateOfBirth { get; set; }
  19. public string Email { get; set; }
  20. public string NationalityIsoCode { get; set; }
  21. public int SenderId { get; set; }
  22. }
  23. }