export interface CountryModel {
    code: string;
    label: string;
    prefix: string;
    mask: string;
}
