Try your search with a different keyword or use * as a wildcard.
namespace Nop.Services.Html.CodeFormatter;
///
/// Handles all of the options for changing the rendered code.
///
public partial class HighlightOptions
{
///
/// Code
///
public string Code { get; set; }
///
/// Display line numbers
///
public bool DisplayLineNumbers { get; set; }
///
/// Language
///
public string Language { get; set; }
///
/// Title
///
public string Title { get; set; }
///
/// Alternate line numbers
///
public bool AlternateLineNumbers { get; set; }
}