mycroforge/MicroForge.CLI/Commands/Interfaces/ISubCommandOf.cs
2024-04-21 23:56:27 +02:00

7 lines
138 B
C#

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