using System.Xml.Serialization; namespace API.DTOs.OPDS; public class FeedCategory { [XmlAttribute("scheme")] public string Scheme { get; } = "http://www.bisg.org/standards/bisac_subject/index.html"; [XmlAttribute("term")] public string Term { get; set; } = default!; /// /// The actual genre /// [XmlAttribute("label")] public string Label { get; set; } = default!; }