Added download and progress endpoints

This commit is contained in:
2024-11-02 19:14:38 +02:00
parent f2a9982d41
commit 9102cfaa47
9 changed files with 102 additions and 24 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace DiscordBotCore.Plugin;
public class InstallingPluginInformation
{
public bool IsInstalling { get; set; }
public required string PluginName { get; set; }
public float InstallationProgress { get; set; } = 0.0f;
}