export interface IDistrictModelAttributes {
    _id: string;
    cityId: string;
    name: string;
    slug: string;
    code: string;
}
