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