package com.ifpdos.debugmenu.entity;

/* JADX INFO: loaded from: classes.dex */
public class CountryCodeModel {
    private String countryCN;
    private String countryCurrent;
    private String digitalCode;
    private String isoCode;
    private String reserved;
    private String threeCode;
    private String twoCode;

    public String getCountryCN() {
        return this.countryCN;
    }

    public String getCountryCurrent() {
        return this.countryCurrent;
    }

    public String getDigitalCode() {
        return this.digitalCode;
    }

    public String getIsoCode() {
        return this.isoCode;
    }

    public String getReserved() {
        return this.reserved;
    }

    public String getThreeCode() {
        return this.threeCode;
    }

    public String getTwoCode() {
        return this.twoCode;
    }

    public void setCountryCN(String str) {
        this.countryCN = str;
    }

    public void setCountryCurrent(String str) {
        this.countryCurrent = str;
    }

    public void setDigitalCode(String str) {
        this.digitalCode = str;
    }

    public void setIsoCode(String str) {
        this.isoCode = str;
    }

    public void setReserved(String str) {
        this.reserved = str;
    }

    public void setThreeCode(String str) {
        this.threeCode = str;
    }

    public void setTwoCode(String str) {
        this.twoCode = str;
    }
}
