Class CacheItem
- Namespace
- FoundationaLLM.Common.Models.Cache
- Assembly
- FoundationaLLM.Common.dll
The cached object.
public class CacheItem
- Inheritance
-
CacheItem
- Inherited Members
- Extension Methods
Properties
ExpirationTimeUtc
The UTC expiration time of the object being cached.
public DateTime? ExpirationTimeUtc { get; set; }
Property Value
IsExpired
Indicates whether the cached object expired or not.
public bool IsExpired { get; }
Property Value
Value
The value of the object being cached.
public required object? Value { get; set; }