using System;
namespace Umbraco.ModelsBuilder.Embedded
{
///
/// Indicates that a property implements a given property alias.
///
/// And therefore it should not be generated.
[AttributeUsage(AttributeTargets.Property , AllowMultiple = false, Inherited = false)]
public class ImplementPropertyTypeAttribute : Attribute
{
public ImplementPropertyTypeAttribute(string alias)
{
Alias = alias;
}
public string Alias { get; private set; }
}
}