Table of Contents

Class CharacterHotkeyEntity

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

Entity representing a character's hotkey bar binding data in the database.

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

ReferenceID

Reference identifier of the bound action or item.

public long ReferenceID { get; set; }

Property Value

long

Slot

Slot index on the hotkey bar.

public int Slot { get; set; }

Property Value

int

TimeCreated

public DateTime TimeCreated { get; set; }

Property Value

DateTime

TimeDeleted

public DateTime? TimeDeleted { get; set; }

Property Value

DateTime?

Type

Type of the hotkey binding (e.g., ability, item).

public byte Type { get; set; }

Property Value

byte

Version

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

public long Version { get; set; }

Property Value

long