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

11 lines
No EOL
260 B
C#

using System.Collections.Generic;
using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Shops.Event;
public class ShopPlayerOpenEvent : PlayerEvent
{
public List<ShopPlayerItem> Items { get; init; }
public string ShopTitle { get; init; }
}