This commit is contained in:
Administrator
2021-05-11 17:43:02 +08:00
parent b6728c11e4
commit 2ffebb8f48
79 changed files with 11011 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { ApiProperty } from "@nestjs/swagger";
export class CreateUserDto {
@ApiProperty()
token: string;
@ApiProperty()
uid: number;
}