// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Diagnostics.CodeAnalysis;
using AzureMcp.Aks.Options;
using AzureMcp.Core.Commands;
using AzureMcp.Core.Commands.Subscription;
namespace AzureMcp.Aks.Commands;
public abstract class BaseAksCommand<
[DynamicallyAccessedMembers(TrimAnnotations.CommandAnnotations)] TOptions>
: SubscriptionCommand<TOptions> where TOptions : BaseAksOptions, new();