File size: 270 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import { createZodDto } from "nestjs-zod/dto";
import { z } from "zod";
export const statisticsSchema = z.object({
views: z.number().int().default(0),
downloads: z.number().int().default(0),
});
export class StatisticsDto extends createZodDto(statisticsSchema) {}
|