13 lines
358 B
TypeScript
13 lines
358 B
TypeScript
import { Message } from './ChatAggregate';
|
|
export declare class ChatArchiveAggregate {
|
|
id: string;
|
|
chatId: string;
|
|
archivedMessages: Message[];
|
|
archivedAt: Date;
|
|
createDate: Date;
|
|
chatType: string;
|
|
chatName: string | null;
|
|
gameId: string | null;
|
|
participants: string[];
|
|
}
|
|
//# sourceMappingURL=ChatArchiveAggregate.d.ts.map
|