import type { UploadedFile } from "craftable-pro/types";
import { BatchType } from "../BatchType/types";

export type Company = {
    id: string; 
    title: string; 
    slug: string;
    modules: Array<string>;
    batch_types: Array<BatchType>;
    created_at: string; 
    updated_at: string; 
    deleted_at: string;
    media?: UploadedFile[];
};

export type CompanyForm = {
    title: string; 
    logo: Array<UploadedFile>;
    modules: Array<string>;
    batch_types: Array<string>;
};
