AngleSharp by AngleSharp

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

 Shape

public sealed class Shape
Represents a CSS shape. https://developer.mozilla.org/en-US/docs/Web/CSS/shape
namespace AngleSharp.Css.Values { public sealed class Shape { private readonly Length _top; private readonly Length _right; private readonly Length _bottom; private readonly Length _left; public Length Top => _top; public Length Right => _right; public Length Bottom => _bottom; public Length Left => _left; public Shape(Length top, Length right, Length bottom, Length left) { _top = top; _right = right; _bottom = bottom; _left = left; } } }