namespace Umbraco.Cms.DevelopmentMode.Backoffice.InMemoryAuto;
///
/// Indicates that an Assembly is a Models Builder assembly.
///
[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.
///
/// A Models Builder assembly can be either InMemory or a normal Dll.
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; }
}