BaseResourceHealthCommand.cs•474 B
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Diagnostics.CodeAnalysis;
using AzureMcp.Core.Commands;
using AzureMcp.Core.Commands.Subscription;
using AzureMcp.ResourceHealth.Options;
namespace AzureMcp.ResourceHealth.Commands;
public abstract class BaseResourceHealthCommand<
[DynamicallyAccessedMembers(TrimAnnotations.CommandAnnotations)] T>
: SubscriptionCommand<T>
where T : BaseResourceHealthOptions, new()
{
}