Files
webapp-dto/dto/conceptresponse.dto.ts
T
2024-12-30 17:41:17 +01:00

10 lines
184 B
TypeScript

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