22 lines
765 B
C#
22 lines
765 B
C#
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; }
|
|
}
|
|
}
|