AngleSharp by Florian Rappl

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

.NET API 1,171,968 bytes

 CssBorderBottomRightRadiusProperty

Information can be found on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius
using AngleSharp.Css; namespace AngleSharp.Dom.Css { internal sealed class CssBorderBottomRightRadiusProperty : CssBorderRadiusPartProperty, ICssBorderBottomRightRadiusProperty, ICssProperty { public Length HorizontalBottomRight => base.HorizontalRadius; public Length VerticalBottomRight => base.VerticalRadius; internal CssBorderBottomRightRadiusProperty(CssStyleDeclaration rule) : base(PropertyNames.BorderBottomRightRadius, rule) { } } }