Table of Contents

Class PartyUpdateEntity

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

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

public class PartyUpdateEntity
Inheritance
PartyUpdateEntity
Inherited Members

Properties

ID

Primary key.

public long ID { get; set; }

Property Value

long

LastUpdate

Timestamp of the most recent party update (UTC).

public DateTime LastUpdate { get; set; }

Property Value

DateTime

PartyID

Party ID this update entry belongs to.

public long PartyID { get; set; }

Property Value

long

TimeCreated

Row creation timestamp (UTC).

public DateTime TimeCreated { get; set; }

Property Value

DateTime