using Elsa.Workflows.Runtime.Services;
namespace Elsa.Workflows.Runtime.Options;
///
/// Provides options related to distributed locking, which is used by .
///
public class DistributedLockingOptions
{
///
/// The maximum amount of time to wait before giving up trying to acquire a lock. Defaults to 10 minutes.
///
public TimeSpan LockAcquisitionTimeout { get; set; } = TimeSpan.FromMinutes(10);
}