mirror of
https://github.com/ershisan99/flashcards-api.git
synced 2025-12-16 20:59:26 +00:00
10 lines
146 B
TypeScript
10 lines
146 B
TypeScript
import { Length } from 'class-validator'
|
|
|
|
export class CreateCardDto {
|
|
@Length(3, 500)
|
|
question: string
|
|
|
|
@Length(3, 500)
|
|
answer: string
|
|
}
|