25 lines
607 B
C#
25 lines
607 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SessionCompanion.Database.Tables
|
|||
|
{
|
|||
|
public class MonsterLegendaryAction : BaseEntity
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Id potwora
|
|||
|
/// </summary>
|
|||
|
public int MonsterId { get; set; }
|
|||
|
public int LegendaryActionId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Połączenie z tabelą Monster
|
|||
|
/// </summary>
|
|||
|
public virtual Monster Monster { get; set; }
|
|||
|
|
|||
|
public virtual LegendaryAction LegendaryActions { get; set; }
|
|||
|
}
|
|||
|
}
|