session-companion/SessionCompanion/SessionCompanion.ViewModels/CharacterArmorViewModels/CharacterArmorViewModelDetails.cs

22 lines
765 B
C#
Raw Normal View History

2020-12-27 19:47:13 +01:00
using SessionCompanion.ViewModels.Enums;
namespace SessionCompanion.ViewModels.CharacterArmorViewModels
{
public class CharacterArmorViewModelDetails
{
public int Id { get; set; }
public int CharacterId { get; set; }
public int ArmorId { get; set; }
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 bool InUse { get; set; }
}
}