src/Bicep.Core/Registry/Oci/ModuleMetadata.cs (11 lines of code) (raw):

// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Bicep.Core.Registry.Oci { public class ModuleMetadata { public ModuleMetadata(string manifestDigest) { this.ManifestDigest = manifestDigest; } public string ManifestDigest { get; } } }