2023-08-11 15:51:20 +01:00
|
|
|
using System.Xml.Serialization;
|
2023-08-09 21:08:57 +01:00
|
|
|
|
2023-08-13 17:33:54 +01:00
|
|
|
namespace OliverBooth.Data.Blog.Rss;
|
2023-08-09 21:08:57 +01:00
|
|
|
|
|
|
|
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";
|
|
|
|
}
|