UNPKG

@arsendoman/book-publisher-store

Version:

A Nest.js package for book publishing and storing

9 lines (7 loc) 179 B
import { IsNotEmpty, IsString } from 'class-validator'; import { Roles } from '../../../../core/entities'; export class RoleDto { @IsNotEmpty() @IsString() title: Roles; }