Hozifa Elgharbawy
refactor: Update admin model and serialization
490d8a0
raw
history blame contribute delete
610 Bytes
import { SwaggerResponseProperty } from "@lib/decorators/swagger-response-property.decorator";
import { Expose, Transform } from "class-transformer";
export class AdminSerialization {
@Expose({ name: "_id" })
@SwaggerResponseProperty("string")
id: string;
@Expose()
@SwaggerResponseProperty("string")
name: string;
@Expose()
@SwaggerResponseProperty("string")
email: string;
@Expose()
@SwaggerResponseProperty({
type: {},
})
image: object;
@Expose()
@SwaggerResponseProperty("string")
role: string;
@Expose()
@SwaggerResponseProperty("string")
gender: string;
}