Kavita/API/DTOs/OPDS/Internal/SearchLink.cs
Joe Milazzo 5290fd8959
Text View, View & Filter All Annotations, and More OPDS Love (#4062)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
2025-09-28 12:28:21 -07:00

16 lines
335 B
C#

using System.Xml.Serialization;
namespace API.DTOs.OPDS;
public sealed record SearchLink
{
[XmlAttribute("type")]
public string Type { get; set; } = default!;
[XmlAttribute("rel")]
public string Rel { get; set; } = "results";
[XmlAttribute("template")]
public string Template { get; set; } = default!;
}