24 lines
561 B
C#
24 lines
561 B
C#
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; }
|
|
}
|
|
}
|