14 lines
290 B
C#
14 lines
290 B
C#
using System;
|
|
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);
|