server-master/srcs/_plugins/Plugin.PlayerLogs/Messages/LogGMCommandExecutedMessage.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
399 B
C#

using PhoenixLib.ServiceBus.Routing;
using Plugin.PlayerLogs.Messages.Player;
using WingsEmu.DTOs.Account;
namespace Plugin.PlayerLogs.Messages
{
[MessageType("logs.gm.commands")]
public class LogGmCommandExecutedMessage : LogPlayerCommandExecutedMessage
{
public AuthorityType PlayerAuthority { get; set; }
public AuthorityType CommandAuthority { get; set; }
}
}