Table of Contents

Class CharacterPartyEntity

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

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

CharacterEntity

CharacterID

Foreign key to the owning character.

public long CharacterID { get; set; }

Property Value

long

HealthPCT

Health percentage of the character, used for party frame display.

public float HealthPCT { get; set; }

Property Value

float

ID

Primary key.

public long ID { get; set; }

Property Value

long

Party

public PartyEntity Party { get; set; }

Property Value

PartyEntity

PartyID

Foreign key to the party this character belongs to.

public long PartyID { get; set; }

Property Value

long

Rank

Rank of the character within the party.

public byte Rank { get; set; }

Property Value

byte

TimeCreated

public DateTime TimeCreated { get; set; }

Property Value

DateTime

Version

Application-level concurrency token. Incremented on every write to detect stale updates.

public long Version { get; set; }

Property Value

long