Table of Contents

Class GuildUpdateEntity

Namespace
FishMMO.Database.Npgsql.Entities
Assembly
FishMMO-DB.dll

Tracks the last update timestamp per guild for staleness detection and polling purposes.

public class GuildUpdateEntity
Inheritance
GuildUpdateEntity
Inherited Members

Properties

GuildID

Guild ID this update entry belongs to.

public long GuildID { get; set; }

Property Value

long

ID

Primary key.

public long ID { get; set; }

Property Value

long

LastUpdate

Timestamp of the most recent guild update (UTC).

public DateTime LastUpdate { get; set; }

Property Value

DateTime

TimeCreated

Row creation timestamp (UTC).

public DateTime TimeCreated { get; set; }

Property Value

DateTime