export interface UserJobFunction {
    id: string;
    userId: string;
    jobFunctionId: string;
    createdAt: Date;
    updatedAt: Date;
}
