mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-21 15:16:33 -04:00
5290fd8959
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
19 lines
441 B
C#
19 lines
441 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace API.DTOs.OPDS;
|
|
|
|
public sealed record FeedCategory
|
|
{
|
|
[XmlAttribute("scheme")]
|
|
public string Scheme { get; } = "http://www.bisg.org/standards/bisac_subject/index.html";
|
|
|
|
[XmlAttribute("term")]
|
|
public string Term { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The actual genre
|
|
/// </summary>
|
|
[XmlAttribute("label")]
|
|
public string Label { get; set; } = default!;
|
|
}
|