Class RssFeedItem
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
Link
Gets the link URL of the RSS feed item, or null if not available.
[JsonPropertyName("link")]
public string? Link { get; init; }
Property Value
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
RssFeedId
Gets the identifier of the parent RSS feed.
[JsonPropertyName("rss_feed_id")]
public long RssFeedId { get; init; }
Property Value
Title
Gets the title of the RSS feed item, or null if not available.
[JsonPropertyName("title")]
public string? Title { get; init; }