mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-01 00:34:07 +02:00
7 lines
286 B
C#
7 lines
286 B
C#
using System.Text.Json;
|
|
using Phantom.Controller.Database.Enums;
|
|
|
|
namespace Phantom.Controller.Services.Events;
|
|
|
|
public sealed record EventLogItem(DateTime UtcTime, Guid? AgentGuid, EventLogEventType EventType, EventLogSubjectType SubjectType, string SubjectId, JsonDocument? Data);
|