Table of Contents

Class RssFeedItem

Namespace
TorBoxSDK.Models.Rss
Assembly
TorBoxSDK.dll

Represents an individual item from an RSS feed.

public sealed record RssFeedItem : IEquatable<RssFeedItem>
Inheritance
RssFeedItem
Implements
Inherited Members

Properties

Id

Gets the unique identifier of the RSS feed item.

[JsonPropertyName("id")]
public long Id { get; init; }

Property Value

long

Gets the link URL of the RSS feed item, or null if not available.

[JsonPropertyName("link")]
public string? Link { get; init; }

Property Value

string

PublishedAt

Gets the date and time when the item was published, or null if not available.

[JsonPropertyName("published_at")]
public DateTimeOffset? PublishedAt { get; init; }

Property Value

DateTimeOffset?

RssFeedId

Gets the identifier of the parent RSS feed.

[JsonPropertyName("rss_feed_id")]
public long RssFeedId { get; init; }

Property Value

long

Title

Gets the title of the RSS feed item, or null if not available.

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

Property Value

string