using System.CommandLine; namespace MfGames.ToolBuilder { /// /// An interface that indicates that the given command is a top-level /// command instead of one that is included as a sub-command inside another. /// This is used to arrange the various sub-commands using dependency /// injection and is purely a marker interface. /// public interface ITopCommand : ICommand { } }