Template
12 lines
242 B
TypeScript
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;
|
|
}
|