19 lines
No EOL
623 B
C#
19 lines
No EOL
623 B
C#
using System;
|
|
using PhoenixLib.ServiceBus.Routing;
|
|
using WingsEmu.Game.Helpers;
|
|
|
|
namespace Plugin.PlayerLogs.Messages.Quest
|
|
{
|
|
[MessageType("logs.quest.completed")]
|
|
public class LogQuestCompletedMessage : IPlayerActionLogMessage
|
|
{
|
|
public int QuestId { get; set; }
|
|
public string SlotType { get; set; }
|
|
public Location Location { 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; }
|
|
}
|
|
} |