Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
270 Bytes
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) {}