DomPutForwardsAttribute
using System;
namespace AngleSharp.Attributes
{
[AttributeUsage(AttributeTargets.Property, Inherited = false)]
public sealed class DomPutForwardsAttribute : Attribute
{
public string PropertyName { get; set; }
public DomPutForwardsAttribute(string propertyName)
{
PropertyName = propertyName;
}
}
}