add button to print logprobe logs (#32255)
* add EntityName at the bottom of LogProbe * pass User into CartridgeMessageEvent * add button to print logprobe logs --------- Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
@@ -5,13 +5,19 @@ namespace Content.Shared.CartridgeLoader.Cartridges;
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class LogProbeUiState : BoundUserInterfaceState
|
||||
{
|
||||
/// <summary>
|
||||
/// The name of the scanned entity.
|
||||
/// </summary>
|
||||
public string EntityName;
|
||||
|
||||
/// <summary>
|
||||
/// The list of probed network devices
|
||||
/// </summary>
|
||||
public List<PulledAccessLog> PulledLogs;
|
||||
|
||||
public LogProbeUiState(List<PulledAccessLog> pulledLogs)
|
||||
public LogProbeUiState(string entityName, List<PulledAccessLog> pulledLogs)
|
||||
{
|
||||
EntityName = entityName;
|
||||
PulledLogs = pulledLogs;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user