namespace Elsa.Http.Options;
///
/// Provides options for the HTTP file cache.
///
public class HttpFileCacheOptions
{
///
/// The time to live for cached files.
///
public TimeSpan TimeToLive { get; set; } = TimeSpan.FromDays(7);
///
/// The local cache directory. Defaults to the system's temp directory.
///
public string LocalCacheDirectory { get; set; } = Path.GetTempPath();
}