import { z } from 'zod'; import { EEventOwnerType } from './enums'; export const EventSearchOutputDTOSchema = z.object({ Id: z.string(), subject: z.string(), dateEntry: z.string(), Data: z.string(), entity: z.string().optional() }).nullable(); export type EventSearchOutput = z.infer;