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

22 lines
No EOL
772 B
C#

using System;
using PhoenixLib.ServiceBus.Routing;
namespace Plugin.PlayerLogs.Messages.Upgrade
{
[MessageType("logs.upgraded.gambled")]
public class LogItemGambledMessage : IPlayerActionLogMessage
{
public int ItemVnum { get; set; }
public string Mode { get; set; }
public string Protection { get; set; }
public int? Amulet { get; set; }
public bool Succeed { get; set; }
public short OriginalRarity { get; set; }
public short? FinalRarity { 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; }
}
}