/**
 * Address district
 */
export type AddressDistrict = {
    /**
     * Id
     */
    id: number;
    /**
     * Number id
     */
    num?: string;
    /**
     * Name
     */
    label: string;
};
