modarb-be / src /common /serializers /template.serialization.ts
Hozifa Elgharbawy
custom workout
e2cbb6b
raw
history blame
235 Bytes
import { Expose } from "class-transformer";
export class TemplateSerialization {
@Expose({ name: "_id" })
id: string;
@Expose()
name: string;
@Expose()
user: string;
@Expose()
exercises: string[];
}