10 lines
140 B
TypeScript
10 lines
140 B
TypeScript
import { IsString } from 'class-validator';
|
|
|
|
export class CreatePlatformDto {
|
|
@IsString()
|
|
name: string;
|
|
|
|
@IsString()
|
|
url: string;
|
|
}
|