using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SessionCompanion.ViewModels.ShopkeeperItemsViewModels
{
public class ShopkeeperItemViewModel
{
///
/// Id Sprzedawcy
///
public int? ShopkeeperId { get; set; }
///
/// Id zbroi
///
public int? ArmorId { get; set; }
///
/// Id broni
///
public int? WeaponId { get; set; }
///
/// Ilość przedmiotu
///
public int Amount { get; set; }
}
}