Class CharacterPartyEntity
Entity representing a character's party membership data in the database.
public class CharacterPartyEntity : IVersionedEntity
- Inheritance
-
CharacterPartyEntity
- Implements
- Inherited Members
Properties
Character
public CharacterEntity Character { get; set; }
Property Value
CharacterID
Foreign key to the owning character.
public long CharacterID { get; set; }
Property Value
HealthPCT
Health percentage of the character, used for party frame display.
public float HealthPCT { get; set; }
Property Value
ID
Primary key.
public long ID { get; set; }
Property Value
Party
public PartyEntity Party { get; set; }
Property Value
PartyID
Foreign key to the party this character belongs to.
public long PartyID { get; set; }
Property Value
Rank
Rank of the character within the party.
public byte Rank { get; set; }
Property Value
TimeCreated
public DateTime TimeCreated { get; set; }
Property Value
Version
Application-level concurrency token. Incremented on every write to detect stale updates.
public long Version { get; set; }