oliverbooth.dev/OliverBooth/Data/Blog/Rss/BlogRoot.cs
Oliver Booth 0a9c2e82d5
refactor: combine sites into one
CORS was "cors"ing some issues (heh).

But also it is easier to maintain this way. Development was made much more difficult when I separated it. Combining it all also improves SEO
2023-08-13 17:34:38 +01:00

14 lines
289 B
C#

using System.Xml.Serialization;
namespace OliverBooth.Data.Blog.Rss;
[XmlRoot("rss")]
public sealed class BlogRoot
{
[XmlAttribute("version")]
public string Version { get; set; } = default!;
[XmlElement("channel")]
public BlogChannel Channel { get; set; } = default!;
}