working on words
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user