File

src/albums/dto/create.dto.ts

Index

Properties

Properties

name
Type : string
Decorators :
@IsString()
@IsNotEmpty()
@MaxLength(25)
public
Type : boolean
Decorators :
@IsBoolean()
@IsNotEmpty()
import { IsBoolean, IsNotEmpty, IsString, MaxLength } from 'class-validator';

export class CreateDto {
  @IsBoolean()
  @IsNotEmpty()
  public: boolean;

  @IsString()
  @IsNotEmpty()
  @MaxLength(25)
  name: string;
}

results matching ""

    No results matching ""