12 lines
No EOL
269 B
C#
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; }
|
|
} |