Add to queue externally - best approach?

I’m building a solution where I plan to use Hangfire in a console app that should process various jobs - all job logic and processing should only happen in the console app.

However, I need to add jobs to the queue including parameters/settings from a another process/application (in this case via a helper library).

My tought is to add a generic job from the helper library, and then parse the parameters/settings and run the job in the console app?

How is this best done?

Thanks in advance.