Spaces:
Running
Running
| import { SwaggerResponseProperty } from "@lib/decorators/swagger-response-property.decorator"; | |
| import { Expose, Transform } from "class-transformer"; | |
| export class AdminSerialization { | |
| ({ name: "_id" }) | |
| ("string") | |
| id: string; | |
| () | |
| ("string") | |
| name: string; | |
| () | |
| ("string") | |
| email: string; | |
| () | |
| ({ | |
| type: {}, | |
| }) | |
| image: object; | |
| () | |
| ("string") | |
| role: string; | |
| () | |
| ("string") | |
| gender: string; | |
| } | |