server-master/srcs/WingsAPI.Game/Logs/IPlayerActionLog.cs
2026-02-10 18:21:30 +01:00

12 lines
No EOL
269 B
C#

using System;
namespace WingsEmu.Game.Logs;
public interface IPlayerActionLog
{
DateTime CreatedAt { get; init; }
int ChannelId { get; init; }
long CharacterId { get; init; }
string CharacterName { get; init; }
string IpAddress { get; init; }
}