get setter for Name and a new Installed tag

This commit is contained in:
Bishbash777
2021-07-28 08:52:34 +01:00
committed by GitHub
parent a5743701ea
commit bf3b819d02

View File

@@ -142,10 +142,11 @@ namespace Torch.API.WebAPI
public class PluginItem public class PluginItem
{ {
public string ID; public string ID;
public string Name; public string Name { get; set; }
public string Author; public string Author;
public string Description; public string Description;
public string LatestVersion; public string LatestVersion;
public bool Installed { get; set; } = false;
public override string ToString() public override string ToString()
{ {