src/users/dto/create-user-role.dto.ts
Properties |
| Readonly roleId |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/users/dto/create-user-role.dto.ts:8
|
| Readonly userId |
Type : string
|
Decorators :
@ApiProperty()
|
|
Defined in src/users/dto/create-user-role.dto.ts:5
|
import { ApiProperty } from "@nestjs/swagger";
export class CreateUserRoleDto {
@ApiProperty()
readonly userId: string;
@ApiProperty()
readonly roleId: string;
}