Table of Contents

Class CachedModel<TModel>

Namespace
Supabase.Postgrest.Models
Assembly
Supabase.Postgrest.dll

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

DateTime

Models

The stored Models

[JsonProperty("response")]
public List<TModel>? Models { get; set; }

Property Value

List<TModel>