Class CachedModel<TModel>
Represents a cacheable model
public class CachedModel<TModel> where TModel : BaseModel, new()
Type Parameters
TModel
- Inheritance
-
CachedModel<TModel>
- Inherited Members
- Extension Methods
Properties
CachedAt
Cache time in UTC.
[JsonProperty("cachedAt")]
public DateTime CachedAt { get; set; }
Property Value
Models
The stored Models
[JsonProperty("response")]
public List<TModel>? Models { get; set; }
Property Value
- List<TModel>