export interface IPhoneNumber {
    readonly country_code: string;
    readonly number: string;
}
