Files
webapp-dto/dto/messageresponse.dto.ts
T

12 lines
242 B
TypeScript

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