Initial commit

This commit is contained in:
2025-05-06 12:42:05 +00:00
commit 287f7e2a3d
12 changed files with 294 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
export class MessageResponseDTO {
constructor(partial: Partial<MessageResponseDTO>) {
this.id = partial.id;
this.value = partial.value;
if (partial.authorId) this.authorId = partial.authorId;
}
id: number;
value: string;
authorId?: string;
}