export interface Project {
    id: string;
    clientId: string;
    name: string;
    integrations: {
        giphy?: {
            active: boolean;
            apiKey: string;
        };
    };
    createdAt: Date;
    updatedAt: Date;
}
