src/Bicep.Core/Semantics/Metadata/ExtensionMetadata.cs (9 lines of code) (raw):
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Bicep.Core.TypeSystem.Types;
namespace Bicep.Core.Semantics.Metadata
{
public record ExtensionMetadata(
string Alias,
string Name,
string Version,
// TODO(kylealbert): this should be non-nullable
NamespaceType? NamespaceType);
}