Template
add player hasGuessed
This commit is contained in:
@@ -2,10 +2,10 @@ export class MessageResponseDTO {
|
||||
constructor(partial: Partial<MessageResponseDTO>) {
|
||||
this.id = partial.id;
|
||||
this.value = partial.value;
|
||||
this.authorId = partial.authorId;
|
||||
if (partial.authorId) this.authorId = partial.authorId;
|
||||
}
|
||||
|
||||
id: number;
|
||||
value: string;
|
||||
authorId: string;
|
||||
authorId?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user