Files
tbd-station-14/Content.Shared/Administration/Logs/SharedAdminLog.cs
2021-11-28 14:56:53 +01:00

15 lines
321 B
C#

using System;
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,
string Message,
Guid[] Players);