/**
 * Generated by orval v8.23.0 🍺
 * Do not edit manually.
 * Api
 * API operativa de Y.E. Transport & Constructors
 * OpenAPI spec version: 1.0.0
 */
import type { ProjectInputStatus } from './projectInputStatus';

export interface ProjectInput {
  projectNumber: string;
  name: string;
  address: string;
  clientId?: string;
  status?: ProjectInputStatus;
  /**
     * @minimum 0
     * @maximum 100
     */
  progress?: number;
}
