2024-09-03 14:50:33 +02:00
|
|
|
export interface Channel {
|
|
|
|
|
id: number;
|
|
|
|
|
name: string;
|
|
|
|
|
created_at: string;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-13 07:45:19 +02:00
|
|
|
export interface Message {
|
|
|
|
|
id: number;
|
|
|
|
|
channel_id: number;
|
|
|
|
|
content: string;
|
|
|
|
|
created_at: string;
|
|
|
|
|
checked?: boolean | null;
|
|
|
|
|
}
|
2024-09-03 14:50:33 +02:00
|
|
|
|
|
|
|
|
export interface File {
|
|
|
|
|
id: number;
|
|
|
|
|
channel_id: number;
|
|
|
|
|
message_id: number;
|
|
|
|
|
file_path: string;
|
|
|
|
|
file_type: string;
|
|
|
|
|
created_at: string;
|
2025-09-13 07:45:19 +02:00
|
|
|
}
|