Added script dependency
This commit is contained in:
20
DiscordBotCore/Plugin/OnlineScriptDependencyInfo.cs
Normal file
20
DiscordBotCore/Plugin/OnlineScriptDependencyInfo.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DiscordBotCore.Plugin
|
||||
{
|
||||
public class OnlineScriptDependencyInfo
|
||||
{
|
||||
public string DependencyName { get; private set; }
|
||||
public string ScriptContent { get; private set; }
|
||||
|
||||
public OnlineScriptDependencyInfo(string dependencyName, string scriptContent)
|
||||
{
|
||||
DependencyName = dependencyName;
|
||||
ScriptContent = scriptContent;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user