import { z } from "zod";

export const transitPointSchema = z.object({
  id: z.number(),
  clientId: z.number(),
  locationName: z.string(),
  status: z.number(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type transitPointTypes = z.infer<typeof transitPointSchema>;

export default transitPointTypes;