export interface IAddressRegion {
    code: string;
    name: string;
    country?: string;
}
