export interface CountryDataInterface {
    id: number;
    code: string;
    name: string;
}
