using System;
namespace Umbraco.ModelsBuilder.Embedded
{
///
/// 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 PureLive assembly.
///
/// A Models Builder assembly can be either PureLive or normal Dll.
public bool PureLive { 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; }
}
}