using SessionCompanion.ViewModels.Enums;

namespace SessionCompanion.ViewModels.CharacterOtherEquipmentViewModels
{
    public class CharacterOtherEquipmentWithDetailsViewModel
    {
        public int Id { get; set; }
        public int CharacterId { get; set; }
        public int OtherEquipmentId { get; set; }
        public string Name { get; set; }
        public string Description { get; set; }
        public int Cost { get; set; }
        public CurrencyType CurrencyType { get; set; }
    }
}