using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SessionCompanion.Database.Tables
{
public class LegendaryAction : BaseEntity
{
//
/// Nazwa legendarnej akcji
///
public string Name { get; set; }
///
/// Opis akcji
///
public string Description { get; set; }
public virtual ICollection MonsterLegendaryActions { get; set; }
}
}