10 lines
No EOL
247 B
C#
10 lines
No EOL
247 B
C#
using WingsEmu.Game._packetHandling;
|
|
using WingsEmu.Game.Inventory;
|
|
|
|
namespace WingsEmu.Game.Characters.Events;
|
|
|
|
public class BankOpenEvent : PlayerEvent
|
|
{
|
|
public long? NpcId { get; init; }
|
|
public InventoryItem BankCard { get; init; }
|
|
} |