返回 AiToEarn
short-link.dto.ts
1 import { createZodDto } from '@yikart/common'
2 import { z } from 'zod'
3
4 export const CreateShortLinkDtoSchema = z.object({
5 originalUrl: z.string().min(1),
6 })
7
8 export class CreateShortLinkDto extends createZodDto(CreateShortLinkDtoSchema, 'CreateShortLinkDto') {}
9
9 lines TYPESCRIPT