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

22 lines
No EOL
371 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.DTOs.Shops;
public class ShopItemDTO
{
public short Slot { get; set; }
public byte Color { get; set; }
public int ItemVNum { get; set; }
public short Rare { get; set; }
public byte Type { get; set; }
public byte Upgrade { get; set; }
public int? Price { get; set; }
}