using System.Threading; using Content.Shared.Administration.Logs; using Content.Shared.Database; namespace Content.Server.Administration.Logs; public sealed class LogFilter { public CancellationToken CancellationToken { get; set; } public int? Round { get; set; } public string? Search { get; set; } public HashSet? Types { get; set; } public HashSet? Impacts { get; set; } public DateTime? Before { get; set; } public DateTime? After { get; set; } public bool IncludePlayers { get; set; } = true; public Guid[]? AnyPlayers { get; set; } public Guid[]? AllPlayers { get; set; } public bool IncludeNonPlayers { get; set; } public int? LastLogId { get; set; } public int LogsSent { get; set; } public int? Limit { get; set; } public DateOrder DateOrder { get; set; } = DateOrder.Descending; }