feat: upgrade to .NET 6, refactor everything

This commit is contained in:
spiral
2021-11-26 21:10:56 -05:00
parent d28e99ba43
commit 1918c56937
314 changed files with 27954 additions and 27966 deletions

View File

@@ -1,19 +1,16 @@
using System.Collections.Generic;
namespace PluralKit.Bot;
namespace PluralKit.Bot
public class CommandGroup
{
public class CommandGroup
public CommandGroup(string key, string description, ICollection<Command> children)
{
public string Key { get; }
public string Description { get; }
public ICollection<Command> Children { get; }
public CommandGroup(string key, string description, ICollection<Command> children)
{
Key = key;
Description = description;
Children = children;
}
Key = key;
Description = description;
Children = children;
}
public string Key { get; }
public string Description { get; }
public ICollection<Command> Children { get; }
}