working on words

This commit is contained in:
2024-12-29 12:24:32 +01:00
parent 856dfbd119
commit 4d22905ef9
8 changed files with 166 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Expose } from 'class-transformer';
export class ConceptResponseDTO {
constructor(partial: Partial<ConceptResponseDTO>) {
Object.assign(this, partial);
}
@Expose()
id: number;
@Expose()
value: string;
}