src/application-user/dto/user-set-password.dto.ts
Properties |
| clientname |
Type : string
|
Decorators :
@ApiProperty()
|
| password |
Type : string
|
Decorators :
@ApiProperty()
|
| username |
Type : string
|
Decorators :
@ApiProperty()
|
import { ApiProperty } from '@nestjs/swagger';
export class UserSetPasswordBodyDto {
@ApiProperty()
username: string;
@ApiProperty()
password: string;
@ApiProperty()
clientname: string;
}