Table of Contents

Class OpmlHead

Namespace
Songhay.Models
Assembly
SonghayCore.dll

Defines a managed representation of the OPML head element.

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

Constructors

OpmlHead()

Initializes a new instance of the OpmlHead class.

public OpmlHead()

Properties

DateCreated

Gets or sets the date created.

[JsonIgnore]
public DateTime? DateCreated { get; set; }

Property Value

DateTime?

DateCreatedString

Gets the date created string.

[JsonPropertyName("dateCreated")]
public string? DateCreatedString { get; set; }

Property Value

string

DateModified

Gets or sets the date modified.

[JsonIgnore]
public DateTime? DateModified { get; set; }

Property Value

DateTime?

DateModifiedString

Gets the date created string.

[JsonPropertyName("dateModified")]
public string? DateModifiedString { get; set; }

Property Value

string

OwnerEmail

Gets or sets the owner email.

[JsonPropertyName("ownerEmail")]
public string? OwnerEmail { get; set; }

Property Value

string

OwnerName

Gets or sets the name of the owner.

[JsonPropertyName("ownerName")]
public string? OwnerName { get; set; }

Property Value

string

Title

Gets or sets the title.

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

Property Value

string