server-master/srcs/_plugins/Plugin.MongoLogs/Entities/IPlayerLogEntity.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
244 B
C#

using System;
namespace Plugin.MongoLogs.Entities
{
public interface IPlayerLogEntity
{
public long CharacterId { get; set; }
public string IpAddress { get; set; }
public DateTime CreatedAt { get; set; }
}
}