using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SessionCompanion.Database.Tables { public class MonsterLegendaryAction : BaseEntity { /// /// Id potwora /// public int MonsterId { get; set; } public int LegendaryActionId { get; set; } /// /// Połączenie z tabelą Monster /// public virtual Monster Monster { get; set; } public virtual LegendaryAction LegendaryActions { get; set; } } }