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

21 lines
No EOL
733 B
C#

using System;
using PhoenixLib.ServiceBus.Routing;
using WingsEmu.DTOs.Items;
namespace Plugin.PlayerLogs.Messages.Bazaar
{
[MessageType("logs.bazaar.itemwithdrawn")]
public class LogBazaarItemWithdrawnMessage : IPlayerActionLogMessage
{
public long BazaarItemId { get; set; }
public long Price { get; set; }
public int Quantity { get; set; }
public ItemInstanceDTO ItemInstance { get; set; }
public long ClaimedMoney { 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; }
}
}