using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text; namespace SessionCompanion.Database.Tables { public class Statistics : BaseEntity { [ForeignKey(nameof(Character))] public int CharacterId { get; set; } public virtual Character Character { get; set; } public int ExperiencePoints { get; set; } public int Level { get; set; } public int Speed { get; set; } public int Initiative { get; set; } public int HealthPoints { get; set; } public int CurrentHealthPoints { get; set; } public int ArmorClass { get; set; } public int Proficiency { get; set; } } }