AngleSharp by Florian Rappl

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

.NET API 1,171,968 bytes

 CssBorderTopRightRadiusProperty

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