Files
tbd-station-14/Content.Shared/Administration/Logs/SharedAdminLog.cs
2025-08-21 22:12:16 +02:00

15 lines
325 B
C#

using Content.Shared.Database;
using Robust.Shared.Serialization;
namespace Content.Shared.Administration.Logs;
[Serializable, NetSerializable]
public readonly record struct SharedAdminLog(
int Id,
LogType Type,
LogImpact Impact,
DateTime Date,
long CurTime,
string Message,
Guid[] Players);