Table of Contents

Class OpmlOutline

Namespace
Songhay.Models
Assembly
SonghayCore.dll

Defines a managed representation of the OPML outline element.

[Serializable]
[DataContract(Name = "outline")]
public class OpmlOutline
Inheritance
OpmlOutline
Inherited Members
Extension Methods

Properties

Category

Gets or sets the Category.

[JsonPropertyName("category")]
public string? Category { get; set; }

Property Value

string

Id

Gets or sets the ID.

[JsonPropertyName("id")]
public string? Id { get; set; }

Property Value

string

OutlineType

Gets or sets the type.

[JsonPropertyName("type")]
public string? OutlineType { get; set; }

Property Value

string

Outlines

Gets or sets the outlines.

[JsonPropertyName("outline")]
public OpmlOutline[] Outlines { get; set; }

Property Value

OpmlOutline[]

Text

Gets or sets the text.

[JsonPropertyName("text")]
public string? Text { get; set; }

Property Value

string

Title

Gets or sets the title.

[JsonPropertyName("title")]
public string? Title { get; set; }

Property Value

string

Url

Gets or sets the URL.

[JsonPropertyName("url")]
public string? Url { get; set; }

Property Value

string

XmlUrl

Gets or sets the XML URL.

[JsonPropertyName("xmlUrl")]
public string? XmlUrl { get; set; }

Property Value

string