1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/frourio/server/validators/index.ts

16 lines
220 B
TypeScript
Raw Normal View History

2020-10-12 13:35:33 +09:00
import { MinLength, IsString } from 'class-validator'
export class LoginBody {
@MinLength(2)
id: string
@MinLength(4)
pass: string
}
export class TokenHeader {
@IsString()
@MinLength(10)
token: string
}