Files
web/server/routers/hotels/schemas/hotel/address.ts
2025-01-30 13:50:02 +01:00

9 lines
163 B
TypeScript

import { z } from "zod"
export const addressSchema = z.object({
city: z.string(),
country: z.string(),
streetAddress: z.string(),
zipCode: z.string(),
})