File size: 197 Bytes
9918248
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Expose } from "class-transformer";

export class EquipmentSerialization {
    @Expose({ name: "_id" })
    id: string;

    @Expose()
    name: string;

    @Expose()
    image: string;
}