[PTRun]Fix crash when plugins have the same name (#15456)

This commit is contained in:
Jaime Bernardo
2022-01-11 23:12:00 +00:00
committed by GitHub
parent d52037fd5e
commit 1a9473c896
2 changed files with 23 additions and 8 deletions

View File

@@ -9,6 +9,10 @@ namespace PowerLauncher.Telemetry.Events
[EventData]
public class PluginModel
{
public string ID { get; set; }
public string Name { get; set; }
public bool Disabled { get; set; }
public bool IsGlobal { get; set; }