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