25 lines
575 B
C#
25 lines
575 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SessionCompanion.ViewModels.ShopkeeperItemsViewModels
|
|||
|
{
|
|||
|
public class ShopkeeperItemViewModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Id Sprzedawcy
|
|||
|
/// </summary>
|
|||
|
public int ShopkeeperId { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// Id zbroi
|
|||
|
/// </summary>
|
|||
|
public int? ArmorId { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// Id broni
|
|||
|
/// </summary>
|
|||
|
public int? WeaponId { get; set; }
|
|||
|
}
|
|||
|
}
|