This reverts commit f67cebf7a4.
Per request of @Kowlin and @southbridge-fur
Check out https://github.com/space-wizards/space-station-14/issues/39960 for further information
14 lines
307 B
C#
14 lines
307 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,
|
|
string Message,
|
|
Guid[] Players);
|