import { IListResponse } from "./base.response";
export interface IInstitutionsResponse extends IListResponse {
    institutions: IInstitution[];
}
export interface IInstitution {
    id: string;
    title: string;
    description: string;
    type: string;
    iban: null | string;
    gsmNumber: null | string;
    email: null | string;
    address: null | string;
    city: string;
    district: string;
    externalUrl: null | string;
    isActive: boolean;
    createdAt: string;
    updatedAt: string;
}
