Pointless Waymarks Tools

Artifact [51ac101a41]
Login

Artifact [51ac101a41]

Artifact 51ac101a41d0d98c9cdb68f2e540d11bde595955de3c83dbcb6afab0fd9dac0f:


using System.Xml.Linq;
using PointlessWaymarks.FeedReader.Feeds._0._91;

namespace PointlessWaymarks.FeedReader.Feeds._0._92;

/// <summary>
/// Rss 0.92 Feed Image according to specification: http://backend.userland.com/rss092
/// </summary>
public class Rss092FeedImage : Rss091FeedImage
{
    /// <summary>
    /// Initializes a new instance of the <see cref="Rss092FeedImage"/> class.
    /// default constructor (for serialization)
    /// </summary>
    public Rss092FeedImage()
        : base()
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="Rss092FeedImage"/> class.
    /// Creates this object based on the xml in the XElement parameter.
    /// </summary>
    /// <param name="element">rss 0.92 image as xml</param>
    public Rss092FeedImage(XElement? element)
        : base(element)
    {
    }
}