server-master/srcs/WingsAPI.Game/Groups/Events/GroupActionEvent.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
256 B
C#

using WingsEmu.Game._packetHandling;
using WingsEmu.Packets.Enums;
namespace WingsEmu.Game.Groups.Events;
public class GroupActionEvent : PlayerEvent
{
public GroupRequestType RequestType { get; init; }
public long CharacterId { get; init; }
}