15 lines
335 B
C#
15 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!;
|
|
}
|