import { z } from "zod";

export const noticePollOptionSchema = z.object({
  id: z.number(),
  clientId: z.number(),
  noticeId: z.number(),
  description: z.string(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type noticePollOptionTypes = z.infer<typeof noticePollOptionSchema>;

export default noticePollOptionTypes;