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
584 B

  1. using Common.Models.RequestResponse;
  2. using System.Collections.Generic;
  3. namespace Common.Models
  4. {
  5. public class StaticData : CommonRequest
  6. {
  7. public string CountryIsoCode { get; set; }
  8. public string Type { get; set; }
  9. public string MethodName { get; set; }
  10. }
  11. public class PurposeOfRemitance
  12. {
  13. public int Id { get; set; }
  14. public string Name { get; set; }
  15. public string CountryIsoCode { get; set; }
  16. }
  17. public class _tpPOR
  18. {
  19. public List<PurposeOfRemitance> RemittancePurposes { get; set; }
  20. }
  21. }