Files
WTP-dto/dto/messageresponse.dto.ts
T
2025-05-06 12:42:05 +00:00

12 lines
265 B
TypeScript

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;
}