interface ProjectType {
  name: string;
  client: number;
  address?: string | null;
  note: string;
  description: string;
  budget: number;
}

export type { ProjectType };
