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

11 lines
No EOL
295 B
C#

using WingsEmu.DTOs.Account;
using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game;
public class GmCommandEvent : PlayerEvent
{
public string Command { get; init; }
public AuthorityType PlayerAuthority { get; init; }
public AuthorityType CommandAuthority { get; init; }
}