export interface CityDataInterface {
    code: string;
    name: string;
    state_id: number;
}
