16 lines
No EOL
508 B
C#
16 lines
No EOL
508 B
C#
using System;
|
|
using PhoenixLib.ServiceBus.Routing;
|
|
|
|
namespace Plugin.PlayerLogs.Messages.Shop
|
|
{
|
|
[MessageType("logs.shop.skill-bought")]
|
|
public class LogShopSkillBoughtMessage : IPlayerActionLogMessage
|
|
{
|
|
public short SkillVnum { 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; }
|
|
}
|
|
} |