export interface JobFunction {
    id: string;
    name: string;
    textCorpus: string;
    createdAt: Date;
    updatedAt: Date;
}
