export interface Log {
    logLevel: string;
    message: string;
    jobId?: string;
    stepId?: string;
    createdDate?: Date;
    createdUser?: string;
}
