mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-31 16:34:04 +02:00
7 lines
304 B
C#
7 lines
304 B
C#
using System.Text.Json;
|
|
using Phantom.Controller.Database.Enums;
|
|
|
|
namespace Phantom.Controller.Services.Audit;
|
|
|
|
public sealed record AuditLogItem(DateTime UtcTime, Guid? UserGuid, string? UserName, AuditLogEventType EventType, AuditLogSubjectType SubjectType, string? SubjectId, JsonDocument? Data);
|