import { PasswordField, StringField } from '../../../decorators'; export class UserRegisterDto { @StringField() readonly name!: string; @StringField() readonly username!: string; @PasswordField({ minLength: 6 }) readonly password!: string; }