17 lines
466 B
C#
17 lines
466 B
C#
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; }
|
|
}
|
|
}
|