namespace Umbraco.Cms.DevelopmentMode.Backoffice.InMemoryAuto;
/// <summary>
/// Indicates that an Assembly is a Models Builder assembly.
/// </summary>
[AttributeUsage(AttributeTargets.Assembly /*, AllowMultiple = false, Inherited = false*/)]
public sealed class ModelsBuilderAssemblyAttribute : Attribute
{
/// Gets or sets a value indicating whether the assembly is a InMemory assembly.
/// <remarks>A Models Builder assembly can be either InMemory or a normal Dll.</remarks>
public bool IsInMemory { get; set; }
/// Gets or sets a hash value representing the state of the custom source code files
/// and the Umbraco content types that were used to generate and compile the assembly.
public string? SourceHash { get; set; }
}