10 lines
161 B
TypeScript
10 lines
161 B
TypeScript
export class ConceptResponseDTO {
|
|
constructor(partial: Partial<ConceptResponseDTO>) {
|
|
Object.assign(this, partial);
|
|
}
|
|
|
|
id: number;
|
|
|
|
value: string;
|
|
}
|