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

17 lines
No EOL
560 B
C#

using System;
using PhoenixLib.ServiceBus.Routing;
namespace Plugin.PlayerLogs.Messages.RainbowBattle
{
[MessageType("logs.rainbowbattle.tie")]
public class LogRainbowBattleTieMessage : IPlayerActionLogMessage
{
public int[] RedTeam { get; set; }
public int[] BlueTeam { get; set; }
public DateTime CreatedAt { get; init; }
public int ChannelId { get; init; }
public long CharacterId { get; init; }
public string CharacterName { get; init; }
public string IpAddress { get; init; }
}
}