Class PartyUpdateEntity
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
LastUpdate
Timestamp of the most recent party update (UTC).
public DateTime LastUpdate { get; set; }
Property Value
PartyID
Party ID this update entry belongs to.
public long PartyID { get; set; }
Property Value
TimeCreated
Row creation timestamp (UTC).
public DateTime TimeCreated { get; set; }