package com.sonymusic.dx.dxuiservice.dto;

public class CountryDTO {

    private String countryKey;
    private String countryName;

    public CountryDTO(String countryKey,String countryName){
        this.countryKey=countryKey;
        this.countryName=countryName;
    }

    public String getCountryKey() {
        return countryKey;
    }

    public void setCountryKey(String countryKey) {
        this.countryKey = countryKey;
    }

    public String getCountryName() {
        return countryName;
    }

    public void setCountryName(String countryName) {
        this.countryName = countryName;
    }
}
