// WingsEmu // // Developed by NosWings Team using System.Collections.Generic; using WingsEmu.DTOs.Shops; namespace WingsAPI.Data.Shops; public class ShopDTO { public int MapNpcId { get; set; } public byte MenuType { get; set; } public string Name { get; set; } public byte ShopType { get; set; } public List Skills { get; set; } public List Items { get; set; } }