2022-05-13 00:59:03 -07:00
|
|
|
|
using Content.Shared.Database;
|
2021-11-22 19:08:27 +01:00
|
|
|
|
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);
|