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.

30 lines
930 B

1 year ago
  1. using System.Collections.Generic;
  2. namespace Common.Model
  3. {
  4. public class ServiceAvailable
  5. {
  6. public string id { get; set; }
  7. public string text { get; set; }
  8. public string description { get; set; }
  9. }
  10. public class CountryServiceResponse
  11. {
  12. public string country { get; set; }
  13. public string countryCode { get; set; }
  14. public string countryId { get; set; }
  15. public string currency { get; set; }
  16. public List<ServiceAvailable> serviceAvailable { get; set; }
  17. }
  18. public class ServiceTypeDetails
  19. {
  20. public string countryName { get; set; }
  21. public string countryCode { get; set; }
  22. public string cashPayment { get; set; }
  23. public string bankDeposit { get; set; }
  24. public string mobileWallet { get; set; }
  25. public string homeDelivery { get; set; }
  26. public string cardPayment { get; set; }
  27. }
  28. }