2022-02-17 18:26:53 +00:00
|
|
|
import * as z from "zod"
|
|
|
|
import * as imports from "../zod-utils"
|
|
|
|
import { ReminderType } from "@prisma/client"
|
2022-01-21 21:35:31 +00:00
|
|
|
|
|
|
|
export const _ReminderMailModel = z.object({
|
|
|
|
id: z.number().int(),
|
|
|
|
referenceId: z.number().int(),
|
|
|
|
reminderType: z.nativeEnum(ReminderType),
|
|
|
|
elapsedMinutes: z.number().int(),
|
|
|
|
createdAt: z.date(),
|
2022-02-17 18:26:53 +00:00
|
|
|
})
|