Skip to content
Snippets Groups Projects
game.dto.ts 192 B
Newer Older
L4072's avatar
L4072 committed
import { IsNotEmpty, IsString } from 'class-validator';

export class CreateGameDTO {
    @IsString () @IsNotEmpty()
    gameId: string;

    @IsString () @IsNotEmpty()
    gameName: string;
}