12 lines
No EOL
301 B
C#
12 lines
No EOL
301 B
C#
using PhoenixLib.ServiceBus;
|
|
using PhoenixLib.ServiceBus.Routing;
|
|
|
|
namespace WingsAPI.Communication.Punishment
|
|
{
|
|
[MessageType("player.kick")]
|
|
public class PlayerKickMessage : IMessage
|
|
{
|
|
public long? PlayerId { get; init; }
|
|
public string PlayerName { get; init; }
|
|
}
|
|
} |