// THIS FILE IS PART OF SVG PROJECT // THE SVG PROJECT IS AN OPENSOURCE LIBRARY LICENSED UNDER THE MS-PL License. // COPYRIGHT (C) svg-net. ALL RIGHTS RESERVED. // GITHUB: https://github.com/svg-net/SVG namespace AntdUI.Svg { /// /// Represents a list of re-usable SVG components. /// public class SvgDocumentMetadata : SvgElement { public override string ClassName { get => "metadata"; } // private string _metadata; /// /// Initializes a new instance of the class. /// public SvgDocumentMetadata() { Content = ""; } //public string Metadata //{ // get { return _metadata; } // set { _metadata = value; } //} /// /// Renders the and contents to the specified object. /// /// The object to render to. protected override void Render(ISvgRenderer renderer) { // Do nothing. Children should NOT be rendered. } } }