import { z } from "zod";

export const tenantAttendanceSchema = z.object({
  id: z.number(),
  clientId: z.number(),
  tenantId: z.number(),
  propId: z.number(),
  roomId: z.number(),
  attendance: z.number(),
  attendanceDate: z.string().datetime(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type tenantAttendanceTypes = z.infer<typeof tenantAttendanceSchema>;

export default tenantAttendanceTypes;