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

using System.Collections.Generic;
namespace Common.Model
{
public class ServiceAvailable
{
public string id { get; set; }
public string text { get; set; }
public string description { get; set; }
}
public class CountryServiceResponse
{
public string country { get; set; }
public string countryCode { get; set; }
public string countryId { get; set; }
public string currency { get; set; }
public List<ServiceAvailable> serviceAvailable { get; set; }
}
public class ServiceTypeDetails
{
public string countryName { get; set; }
public string countryCode { get; set; }
public string cashPayment { get; set; }
public string bankDeposit { get; set; }
public string mobileWallet { get; set; }
public string homeDelivery { get; set; }
public string cardPayment { get; set; }
}
}