InlineCodeNode
Pennington.ApiMetadata
Inline code span from a <c> element.
Properties
Textstring- The code text.
Constructors
InlineCodeNode
#public InlineCodeNode(string Text)
Inline code span from a <c> element.
Parameters
Textstring- The code text.
Pennington.ApiMetadata.InlineCodeNode
namespace Pennington.ApiMetadata;
/// Inline code span from a <c> element.
public record InlineCodeNode
{
/// Inline code span from a <c> element.
public InlineCodeNode(string Text)
;
/// The code text.
public string Text { get; set; }
}