Class CharacterAbilityEntity
Entity representing a character's ability data in the database.
public class CharacterAbilityEntity : IVersionedEntity
- Inheritance
-
CharacterAbilityEntity
- Implements
- Inherited Members
Properties
AbilityEvents
List of ability event identifiers associated with this ability.
public List<int> AbilityEvents { get; set; }
Property Value
Character
public CharacterEntity Character { get; set; }
Property Value
CharacterID
Foreign key to the owning character.
public long CharacterID { get; set; }
Property Value
Cooldown
Cooldown duration in seconds for this ability.
public float Cooldown { get; set; }
Property Value
Deleted
public bool Deleted { get; set; }
Property Value
ID
Primary key.
public long ID { get; set; }
Property Value
TemplateID
Template identifier for this ability.
public int TemplateID { get; set; }
Property Value
TimeCreated
public DateTime TimeCreated { get; set; }
Property Value
TimeDeleted
public DateTime? TimeDeleted { get; set; }
Property Value
Version
Application-level concurrency token. Incremented on every write to detect stale updates.
public long Version { get; set; }