File size: 439 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 EquipmentSerialization {
    @Expose({ name: "_id" })
    @SwaggerResponseProperty({ type: "string" })
    id: string;

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

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