api 구성 준비

This commit is contained in:
2023-08-06 05:49:25 +00:00
parent 5b6751f420
commit 2b27b8b427
5 changed files with 322 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import {
IsInt,
IsString,
} from 'class-validator';
export class BasicQueryDTO {
@IsInt()
generalID!: number;
command!: string;
}