/**
 * Generated by orval v8.9.1 🍺
 * Do not edit manually.
 * Api
 * Model Directory & Booking Platform API
 * OpenAPI spec version: 0.1.0
 */
import type { RegisterModelInputProStatus } from './registerModelInputProStatus';

export interface RegisterModelInput {
  name: string;
  city: string;
  proStatus: RegisterModelInputProStatus;
  price1h: number;
  price2h: number;
  priceFullDay: number;
  priceNight?: number;
  services: string;
  photoUrl?: string;
  bio?: string;
  contactPlatform?: string;
  whatsappNumber: string;
}
