1
0

SharedAdminLog.cs 307 B

12345678910111213
  1. using Content.Shared.Database;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.Administration.Logs;
  4. [Serializable, NetSerializable]
  5. public readonly record struct SharedAdminLog(
  6. int Id,
  7. LogType Type,
  8. LogImpact Impact,
  9. DateTime Date,
  10. string Message,
  11. Guid[] Players);