| 1 | import { createZodDto } from '@yikart/common' |
| 2 | import { z } from 'zod' |
| 3 | |
| 4 | const CreateApiKeyDtoSchema = z.object({ |
| 5 | name: z.string().min(1).max(100).describe('API Key 名称'), |
| 6 | }) |
| 7 | export class CreateApiKeyDto extends createZodDto(CreateApiKeyDtoSchema, 'CreateApiKeyDto') {} |
| 8 |