mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-24 08:32:29 -04:00
5290fd8959
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
16 lines
335 B
C#
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!;
|
|
}
|