import { DocumentReference } from "@firebase/firestore-types";
import { SlsJobStatus } from "../enums/sls-job-status";
export interface SlsJob {
    status: SlsJobStatus;
    title: string;
    description: string;
    note: string;
    url: string;
    figureUrl: string;
    category: DocumentReference;
    referentUser: DocumentReference;
    company: DocumentReference;
    companyContact: DocumentReference;
    updatedAnswers: Array<string>;
    reactivatedAnswers: Array<string>;
    companyDescription: string;
    sendApplicationEmailToContact: boolean;
}
