File size: 418 Bytes
da50ce9
9918248
 
 
da50ce9
 
 
9918248
da50ce9
 
 
9918248
da50ce9
 
 
9918248
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { SwaggerResponseProperty } from "@lib/decorators/swagger-response-property.decorator";
import { Expose } from "class-transformer";

export class MuscleSerialization {
  @Expose({ name: "_id" })
  @SwaggerResponseProperty({ type: "string" })
  id: string;

  @Expose()
  @SwaggerResponseProperty({ type: "string" })
  name: string;

  @Expose()
  @SwaggerResponseProperty({ type: "string" })
  image: string;
}