9 lines
253 B
C#
9 lines
253 B
C#
namespace DiscordBotCore.PluginManagement.Helpers;
|
|
|
|
public interface IPluginRepositoryConfiguration
|
|
{
|
|
public string BaseUrl { get; }
|
|
|
|
public string PluginRepositoryLocation { get; }
|
|
public string DependenciesRepositoryLocation { get; }
|
|
} |