import { z } from 'zod';

export const ClubSchema = z.object({
  id: z.string().uuid(),
  name: z.string().min(1),
  monthlyQuotaGrams: z.number().int().nonnegative(),
  membershipPriceARS: z.number().nonnegative(),
  reservationsEnabled: z.boolean()
});

export type Club = z.infer<typeof ClubSchema>;
