Class OpmlHead
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
DateCreatedString
Gets the date created string.
[JsonPropertyName("dateCreated")]
public string? DateCreatedString { get; set; }
Property Value
DateModified
Gets or sets the date modified.
[JsonIgnore]
public DateTime? DateModified { get; set; }
Property Value
DateModifiedString
Gets the date created string.
[JsonPropertyName("dateModified")]
public string? DateModifiedString { get; set; }
Property Value
OwnerEmail
Gets or sets the owner email.
[JsonPropertyName("ownerEmail")]
public string? OwnerEmail { get; set; }
Property Value
OwnerName
Gets or sets the name of the owner.
[JsonPropertyName("ownerName")]
public string? OwnerName { get; set; }
Property Value
Title
Gets or sets the title.
[JsonPropertyName("title")]
public string? Title { get; set; }