using System;
namespace Umbraco.ModelsBuilder
{
///
/// Indicates the models namespace.
///
/// Will override anything else that might come from settings.
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false, Inherited = false)]
public sealed class ModelsNamespaceAttribute : Attribute
{
public ModelsNamespaceAttribute(string modelsNamespace)
{}
}
}