server/types/entities/conversation.ts

10 lines
204 B
TypeScript
Raw Normal View History

2023-09-12 22:48:10 +02:00
import { APIAccount } from "./account";
import { APIStatus } from "./status";
2023-09-11 05:31:08 +02:00
2023-09-12 22:48:10 +02:00
export interface APIConversation {
2023-09-11 05:31:08 +02:00
id: string;
2023-09-12 22:48:10 +02:00
accounts: APIAccount[];
last_status: APIStatus | null;
2023-09-11 05:31:08 +02:00
unread: boolean;
2023-09-11 05:46:20 +02:00
}