AngleSharp by Florian Rappl

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

.NET API 681,472 bytes

 HTMLModElement

public sealed class HTMLModElement : HTMLElement
Represents the HTML modifier (ins / del) element.
namespace AngleSharp.DOM.Html { [DOM("HTMLModElement")] public sealed class HTMLModElement : HTMLElement { [DOM("cite")] public string Cite { get { return GetAttribute("cite"); } set { SetAttribute("cite", value); } } [DOM("datetime")] public string Datetime { get { return GetAttribute("datetime"); } set { SetAttribute("datetime", value); } } protected internal override bool IsSpecial => false; internal HTMLModElement() { _name = "ins"; } } }