Picsur/backend/src/collections/userdb/user.dto.ts
2022-02-21 23:26:40 +01:00

11 lines
176 B
TypeScript

import { IsBoolean, IsNotEmpty, IsString } from 'class-validator';
export class User {
@IsString()
@IsNotEmpty()
username: string;
@IsBoolean()
isAdmin: boolean;
}