18 lines
No EOL
587 B
C#
18 lines
No EOL
587 B
C#
using System;
|
|
using PhoenixLib.ServiceBus.Routing;
|
|
|
|
namespace Plugin.PlayerLogs.Messages.Raid
|
|
{
|
|
[MessageType("logs.raid.started")]
|
|
public class LogRaidStartedMessage : IPlayerActionLogMessage
|
|
{
|
|
public Guid RaidId { get; set; }
|
|
public long[] MembersIds { get; set; }
|
|
public string RaidType { 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; }
|
|
}
|
|
} |