working on words

This commit is contained in:
2024-12-29 12:04:19 +01:00
commit 03d4a1ba26
8 changed files with 166 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import { Expose } from 'class-transformer';
export class WordResponseDTO {
constructor(partial: Partial<WordResponseDTO>) {
Object.assign(this, partial);
}
@Expose()
id: number;
@Expose()
value: string;
@Expose()
ownerId: string;
@Expose()
enabled: boolean;
}