Spaces:
Running
Running
| import { SwaggerResponseProperty } from "@lib/decorators/swagger-response-property.decorator"; | |
| import { Expose } from "class-transformer"; | |
| export class TemplateSerialization { | |
| ({ name: "_id" }) | |
| ({ type: "string" }) | |
| id: string; | |
| () | |
| ({ type: "string" }) | |
| name: string; | |
| () | |
| ({ type: "string" }) | |
| user: string; | |
| () | |
| ({ type: "Date" }) | |
| creationDate: Date; | |
| () | |
| ({ type: ["string"] }) | |
| exercises: string[]; | |
| } | |