29 lines
701 B
C#
29 lines
701 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SessionCompanion.Database.Tables
|
|||
|
{
|
|||
|
public class MonsterSpecialAbility : BaseEntity
|
|||
|
{
|
|||
|
public int SpecialAbilityId { get; set; }
|
|||
|
|
|||
|
|
|||
|
public int? DamageDice { get; set; }
|
|||
|
|
|||
|
public int? DamageDiceAmount { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// Id potwora
|
|||
|
/// </summary>
|
|||
|
public int? MonsterId { get; set; }
|
|||
|
|
|||
|
public virtual SpecialAbility SpecialAbility { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// Połączenie z tabelą Monster
|
|||
|
/// </summary>
|
|||
|
public virtual Monster Monster { get; set; }
|
|||
|
}
|
|||
|
}
|