Class CharacterAttributeEntity
Entity representing a character's attribute data in the database.
public class CharacterAttributeEntity : IVersionedEntity
- Inheritance
-
CharacterAttributeEntity
- 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
CurrentValue
Current (modified) value of the attribute, including buffs and debuffs.
public float CurrentValue { 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 attribute.
public int TemplateID { get; set; }
Property Value
TimeCreated
public DateTime TimeCreated { get; set; }
Property Value
TimeDeleted
public DateTime? TimeDeleted { get; set; }
Property Value
Value
Base value of the attribute.
public int Value { get; set; }
Property Value
Version
Application-level concurrency token. Incremented on every write to detect stale updates.
public long Version { get; set; }