d491754
1
2
3
4
5
6
7
8
9
10
import { Expose, Transform } from "class-transformer"; export class ExerciseSerialization { @Expose({ name: "_id" }) id: string; @Expose() name: string; }