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.

31 lines
1.0 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Common.Models.TxnAmendModel
  7. {
  8. public class TxnAmendSender
  9. {
  10. public string SAddress { get; set; }
  11. public string SMobile { get; set; }
  12. public string STel { get; set; }
  13. public string SCityId { get; set; }
  14. public string SCity { get; set; }
  15. public string SState { get; set; }
  16. public int SCountryId { get; set; }
  17. public string SCountryName { get; set; }
  18. public string SZipCode { get; set; }
  19. public string SEmail { get; set; }
  20. public string SIdType { get; set; }
  21. public string SIdNo { get; set; }
  22. public string SIdIssueDate { get; set; }
  23. public string SIdExpiryDate { get; set; }
  24. public string SNativeCountry { get; set; }
  25. public string SOccuptionId { get; set; }
  26. public string SOccuptionName { get; set; }
  27. public string SBirthDate { get; set; }
  28. public bool IsIndividual { get; set; }
  29. }
  30. }