Files
SerpentRace/SerpentRace_Backend/dist/Domain/Chat/ChatArchiveAggregate.d.ts
T

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