Cleaning up projects, project is building

This commit is contained in:
Kwoth
2023-04-06 10:57:30 +02:00
parent 1f1b01995e
commit 069f8fab9d
82 changed files with 822 additions and 706 deletions

View File

@@ -4,7 +4,7 @@ using NadekoBot.Modules.Gambling.Services;
namespace NadekoBot.Modules.Gambling;
// todo do we need both currencyprovider and currencyservice
public sealed class CurrencyProvider : ICurrencyProvider
public sealed class CurrencyProvider : ICurrencyProvider, INService
{
private readonly GamblingConfigService _cs;

View File

@@ -1,4 +1,6 @@
namespace NadekoBot.Modules;
using NadekoBot.Modules;
namespace NadekoBot.Modules;
public interface IMedusaeRepositoryService
{

View File

@@ -1,6 +1,8 @@
public class ModuleItem
namespace NadekoBot.Modules;
public sealed class ModuleItem
{
public string Name { get; init; }
public string Description { get; init; }
public string Command { get; init; }
public required string Name { get; init; }
public required string Description { get; init; }
public required string Command { get; init; }
}

View File

@@ -1,8 +0,0 @@
namespace NadekoBot.Modules;
public class ModuleItem
{
public string Name { get; init; }
public string Description { get; init; }
public string Command { get; init; }
}