export class MessageResponseDTO { constructor(partial: Partial) { this.id = partial.id; this.value = partial.value; if (partial.authorId) this.authorId = partial.authorId; } id: number; value: string; authorId?: string; }