// 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 shopItems, IReadOnlyList 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 ShopItems { get; } public IReadOnlyList ShopSkills { get; } }