server-master/srcs/WingsAPI.Game/Bazaar/BazaarItem.cs
2026-02-10 18:21:30 +01:00

31 lines
No EOL
611 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsAPI.Data.Bazaar;
using WingsEmu.Game.Items;
namespace WingsEmu.Game.Bazaar;
public class BazaarItem
{
/// <summary>
/// Should not be used
/// </summary>
public BazaarItem()
{
}
public BazaarItem(BazaarItemDTO bazaarItemDto, GameItemInstance item, string ownerName)
{
BazaarItemDto = bazaarItemDto;
Item = item;
OwnerName = ownerName;
}
public BazaarItemDTO BazaarItemDto { get; set; }
public GameItemInstance Item { get; set; }
public string OwnerName { get; set; }
}