Kavita/API/DTOs/OPDS/SearchLink.cs
2025-05-04 07:14:44 -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!;
}