AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.9.1" />

 PropertyFlags

Defines some properties of a CSS property. Exclusive maximum is 0x100. Inclusive maximum is 0x0FF.
using System; namespace AngleSharp.Css { [Flags] internal enum PropertyFlags : byte { None = 0, Inherited = 1, Hashless = 2, Unitless = 4, Animatable = 8, Shorthand = 16 } }