DomInitDictAttribute
using System;
namespace AngleSharp.Attributes
{
[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method, Inherited = false)]
public sealed class DomInitDictAttribute : Attribute
{
public int Offset { get; set; }
public bool IsOptional { get; set; }
public DomInitDictAttribute(int offset = 0, bool optional = false)
{
Offset = offset;
IsOptional = optional;
}
}
}