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

28 lines
No EOL
778 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System.Collections.Generic;
using WingsEmu.DTOs.Shops;
namespace WingsEmu.Game.Shops;
public class ShopNpc
{
public ShopNpc(int mapNpcId, ShopNpcMenuType menuType, string name, byte shopType, IReadOnlyList<ShopItemDTO> shopItems, IReadOnlyList<ShopSkillDTO> shopSkills)
{
MapNpcId = mapNpcId;
MenuType = menuType;
Name = name;
ShopType = shopType;
ShopItems = shopItems;
ShopSkills = shopSkills;
}
public int MapNpcId { get; }
public ShopNpcMenuType MenuType { get; }
public string Name { get; }
public byte ShopType { get; }
public IReadOnlyList<ShopItemDTO> ShopItems { get; }
public IReadOnlyList<ShopSkillDTO> ShopSkills { get; }
}