Class CharacterHotkeyEntity
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
CharacterID
Foreign key to the owning character.
public long CharacterID { get; set; }
Property Value
Deleted
public bool Deleted { get; set; }
Property Value
ID
Primary key.
public long ID { get; set; }
Property Value
ReferenceID
Reference identifier of the bound action or item.
public long ReferenceID { get; set; }
Property Value
Slot
Slot index on the hotkey bar.
public int Slot { get; set; }
Property Value
TimeCreated
public DateTime TimeCreated { get; set; }
Property Value
TimeDeleted
public DateTime? TimeDeleted { get; set; }
Property Value
Type
Type of the hotkey binding (e.g., ability, item).
public byte Type { get; set; }
Property Value
Version
Application-level concurrency token. Incremented on every write to detect stale updates.
public long Version { get; set; }