namespace Elsa.Workflows.Runtime.Options;
///
/// Options for purging the bookmark queue.
///
public class BookmarkQueuePurgeOptions
{
///
/// The time-to-live for bookmark queue items.
///
public TimeSpan Ttl { get; set; } = TimeSpan.FromSeconds(10);
///
/// The number of records to clean up per sweep.
///
public int BatchSize { get; set; } = 1000;
}