using SharedLibraryCore.Interfaces; using System; using System.Collections.Generic; namespace SharedLibraryCore.Configuration { /// /// Basic command configuration /// public class CommandConfiguration : IBaseConfiguration { /// /// Dict of command class names mapped to configurable properties /// public Dictionary Commands { get; set; } = new Dictionary(); public IBaseConfiguration Generate() { throw new NotImplementedException(); } public string Name() => nameof(CommandConfiguration); } }