import { z } from "zod";

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

type noticeViewsTypes = z.infer<typeof noticeViewsSchema>;

export default noticeViewsTypes;
