chatbolt-dev / apps /agent-service /libs /shared /src /entities /image-agent.entity.d.ts
MTayyaBH
Refactor code structure for improved readability and maintainability
d714fad
Raw
History Blame Contribute Delete
390 Bytes
export declare class ImageAgent {
id: string;
tenant_id: string;
name: string;
description: string;
provider: string;
model: string;
api_key_encrypted: string;
prompt_key: string;
default_width: number;
default_height: number;
banner_width: number;
banner_height: number;
is_active: boolean;
created_at: Date;
updated_at: Date;
}