Formatted code and rebuilt PluginLoader
This commit is contained in:
20
PluginManager/Loaders/FileLoaderResult.cs
Normal file
20
PluginManager/Loaders/FileLoaderResult.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace PluginManager.Loaders;
|
||||
|
||||
public class FileLoaderResult
|
||||
{
|
||||
public string PluginName { get; init; }
|
||||
|
||||
public string? ErrorMessage { get; init; }
|
||||
|
||||
|
||||
public FileLoaderResult(string pluginName, string errorMessage)
|
||||
{
|
||||
PluginName = pluginName;
|
||||
ErrorMessage = errorMessage;
|
||||
}
|
||||
|
||||
public FileLoaderResult(string pluginName)
|
||||
{
|
||||
PluginName = pluginName;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user