using Common.Models.RequestResponse; using System.Collections.Generic; namespace Common.Models { public class StaticData : CommonRequest { public string CountryIsoCode { get; set; } public string Type { get; set; } public string MethodName { get; set; } } public class PurposeOfRemitance { public int Id { get; set; } public string Name { get; set; } public string CountryIsoCode { get; set; } } public class _tpPOR { public List RemittancePurposes { get; set; } } }