import { DocumentReference } from '@firebase/firestore-types';
export interface SlsMatching {
    user: DocumentReference;
    job: DocumentReference;
    score: number;
    scores?: {
        [questionId: string]: number;
    };
    userJobApplication?: DocumentReference;
    proposalDate?: Date;
    scoreNotificationDate?: Date;
    consultedWithScore?: number;
    notificationToSend?: boolean;
    toBeCalculated?: boolean;
}
