add entity logs verb (#14170)
This commit is contained in:
@@ -27,6 +27,21 @@ public static class AdminLogsEuiMsg
|
||||
{
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class SetLogFilter : EuiMessageBase
|
||||
{
|
||||
public SetLogFilter(string? search = null, bool invertTypes = false, HashSet<LogType>? types = null)
|
||||
{
|
||||
Search = search;
|
||||
InvertTypes = invertTypes;
|
||||
Types = types;
|
||||
}
|
||||
|
||||
public string? Search { get; set; }
|
||||
public bool InvertTypes { get; set; }
|
||||
public HashSet<LogType>? Types { get; set; }
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class NewLogs : EuiMessageBase
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user