src/iam/role/dto/create-role.dto.ts
Properties |
| name |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/iam/role/dto/create-role.dto.ts:7
|
import { ApiProperty } from "@nestjs/swagger";
import { IsNotEmpty } from "class-validator";
export class CreateRoleDto {
@ApiProperty()
@IsNotEmpty()
name: string;
}