import { z } from "zod";

export const wifiCredentialSchema = z.object({
  id: z.number(),
  clientId: z.number(),
  tenantId: z.number(),
  title: z.string(),
  device: z.string(),
  password: z.string(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type wifiCredentialTypes = z.infer<typeof wifiCredentialSchema>;

export default wifiCredentialTypes;