mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
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!;
|
|
}
|