mycroforge/MycroForge.CLI/Commands/Interfaces/ISubCommandOf.cs

7 lines
138 B
C#

using System.CommandLine;
namespace MycroForge.CLI.Commands.Interfaces;
public interface ISubCommandOf<T> where T : Command
{
}