using SessionCompanion.ViewModels.Enums;
using System.Collections.Generic;

namespace SessionCompanion.Database.Tables
{

    public class OtherEquipment : BaseEntity
    {
        public string Name { get; set; }
        public string Description { get; set; }
        public int Cost { get; set; }
        public CurrencyType CurrencyType { get; set; }

        public virtual ICollection<CharacterOtherEquipment> CharacterOtherEquipments { get; set; }
    }
}