session-companion/SessionCompanion/SessionCompanion.Database/Tables/Armor.cs

22 lines
687 B
C#
Raw Normal View History

2020-12-27 19:47:13 +01:00
using SessionCompanion.ViewModels.Enums;
using System.Collections.Generic;
namespace SessionCompanion.Database.Tables
{
public class Armor : BaseEntity
{
public string Name { get; set; }
public string Category { get; set; }
public string ArmorClassBase {get; set; }
public bool HaveDexterityBonus { get; set; }
public int? MinimumStrength { get; set; }
public bool HaveStealthDisadvantage { get; set; }
public int Weight { get; set; }
public int Cost { get; set; }
public CurrencyType CurrencyType { get; set; }
public virtual ICollection<CharacterArmor> CharacterArmors { get; set; }
}
}