Template
11 lines
185 B
TypeScript
11 lines
185 B
TypeScript
export class ConceptResponseDTO {
|
|
constructor(partial: Partial<ConceptResponseDTO>) {
|
|
this.id = partial.id;
|
|
this.value = partial.value;
|
|
}
|
|
|
|
id: number;
|
|
|
|
value: string;
|
|
}
|