From bf3b819d02b674b0968a05d8f93f77d467c13986 Mon Sep 17 00:00:00 2001 From: Bishbash777 <50243964+Bishbash777@users.noreply.github.com> Date: Wed, 28 Jul 2021 08:52:34 +0100 Subject: [PATCH] get setter for Name and a new Installed tag --- Torch.API/WebAPI/PluginQuery.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Torch.API/WebAPI/PluginQuery.cs b/Torch.API/WebAPI/PluginQuery.cs index a13e5a8..61dcf6a 100644 --- a/Torch.API/WebAPI/PluginQuery.cs +++ b/Torch.API/WebAPI/PluginQuery.cs @@ -142,10 +142,11 @@ namespace Torch.API.WebAPI public class PluginItem { public string ID; - public string Name; + public string Name { get; set; } public string Author; public string Description; public string LatestVersion; + public bool Installed { get; set; } = false; public override string ToString() {