tududi/frontend/entities/InboxItem.ts
2025-07-01 13:30:21 +03:00

8 lines
No EOL
199 B
TypeScript

export interface InboxItem {
id?: number;
content: string;
status?: string; // 'added' | 'processed' | 'deleted'
source?: string; // 'telegram'
created_at?: string;
updated_at?: string;
}