How to make the Child Job recurring after the parent Job succeeded?

    //Fire and Forget Job - this job is executed only once
    var parentjobId = BackgroundJob.Enqueue(() => Console.WriteLine("Parent job done suceessfully!"));
    //Continuations Job - this job executed when its parent job is executed.
    BackgroundJob.ContinueJobWith(parentjobId, () => Console.WriteLine("Child job done successfully!"), JobContinuationOptions.OnlyOnSucceededState);

I want Continuation Job recurring ?how can I do that ?

Make the continuing job schedule the recurring job?