返回 AiToEarn
id.dto.ts
1 import { IsNumber } from 'class-validator';
2
3 export class IdDto {
4 @IsNumber()
5 id: number;
6 }
7
7 lines TYPESCRIPT