oliverbooth.dev/OliverBooth/Data/Rss/AtomLink.cs

16 lines
341 B
C#
Raw Normal View History

using System.Xml.Serialization;
namespace OliverBooth.Data.Rss;
public sealed class AtomLink
{
[XmlAttribute("href")]
public string Href { get; set; } = default!;
[XmlAttribute("rel")]
public string Rel { get; set; } = "self";
[XmlAttribute("type")]
public string Type { get; set; } = "application/rss+xml";
}