<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="10.0.11" />

Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions

public sealed class HybridCacheEntryOptions
Specifies additional options (for example, expiration) that apply to a HybridCache operation. When options can be specified at multiple levels (for example, globally and per-call), the values are composed; the most granular non-null value is used, with null values being inherited. If no value is specified at any level, the implementation can choose a reasonable default.
namespace Microsoft.Extensions.Caching.Hybrid { public sealed class HybridCacheEntryOptions { public TimeSpan? Expiration { get; set; } public TimeSpan? LocalCacheExpiration { get; set; } public HybridCacheEntryFlags? Flags { get; set; } public HybridCacheEntryOptions(); } }