export interface OrganizationResponse {
    id: string;
    name: string;
    created_at: string;
    updated_at: string;
}
export interface OrganizationsResponse {
    data: OrganizationResponse[];
}
