using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SessionCompanion.Database.Tables
{
    public class LegendaryAction : BaseEntity
    {
        // <summary>
        /// Nazwa legendarnej akcji
        /// </summary>
        public string Name { get; set; }

        /// <summary>
        /// Opis akcji
        /// </summary>
        public string Description { get; set; }

        public virtual ICollection<MonsterLegendaryAction> MonsterLegendaryActions { get; set; }
    }
}