src/application-profile/dto/application-profile.dto.ts
Properties |
| name |
Type : string
|
Decorators :
@ApiProperty({example: 'Admin'})
|
import { ApiProperty } from '@nestjs/swagger';
export class ApplicationProfileBodyDto {
@ApiProperty({ example: 'Admin' })
name: string;
}