Table of Contents

Class CharacterFactionEntity

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

Entity representing a character's faction reputation data in the database.

public class CharacterFactionEntity : IVersionedEntity
Inheritance
CharacterFactionEntity
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

Deleted

public bool Deleted { get; set; }

Property Value

bool

ID

Primary key.

public long ID { get; set; }

Property Value

long

TemplateID

Template identifier for this faction.

public int TemplateID { get; set; }

Property Value

int

TimeCreated

public DateTime TimeCreated { get; set; }

Property Value

DateTime

TimeDeleted

public DateTime? TimeDeleted { get; set; }

Property Value

DateTime?

Value

Reputation or standing value with this faction.

public int Value { get; set; }

Property Value

int

Version

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

public long Version { get; set; }

Property Value

long