session-companion/SessionCompanion/SessionCompanion.ViewModels/CharacterOtherEquipmentViewModels/CharacterOtherEquipmentWithDetailsViewModel.cs

16 lines
507 B
C#
Raw Normal View History

2020-12-27 19:47:13 +01:00
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; }
}
}