mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
* Recreated Kavita Logging with Serilog instead of Default. This needs to be move out of the appsettings now, to allow auto updater to patch. * Refactored the code to be completely configured via Code rather than appsettings.json. This is a required step for Auto Updating. * Added in the ability to send logs directly to the UI only for users on the log route. Stopping implementation as Alerts page will handle the rest of the implementation. * Fixed up the backup service to not rely on Config from appsettings.json * Tweaked the Logging levels available * Moved everything over to File-scoped namespaces * Moved everything over to File-scoped namespaces * Code cleanup, removed an old migration and changed so debug logging doesn't print sensitive db data * Removed dead code
42 lines
1.7 KiB
C#
42 lines
1.7 KiB
C#
using System.Xml.Serialization;
|
|
|
|
namespace API.DTOs.OPDS;
|
|
|
|
[XmlRoot("OpenSearchDescription", Namespace = "http://a9.com/-/spec/opensearch/1.1/")]
|
|
public class OpenSearchDescription
|
|
{
|
|
/// <summary>
|
|
/// Contains a brief human-readable title that identifies this search engine.
|
|
/// </summary>
|
|
public string ShortName { get; set; }
|
|
/// <summary>
|
|
/// Contains an extended human-readable title that identifies this search engine.
|
|
/// </summary>
|
|
public string LongName { get; set; }
|
|
/// <summary>
|
|
/// Contains a human-readable text description of the search engine.
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
/// <summary>
|
|
/// https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md#the-url-element
|
|
/// </summary>
|
|
public SearchLink Url { get; set; }
|
|
/// <summary>
|
|
/// Contains a set of words that are used as keywords to identify and categorize this search content.
|
|
/// Tags must be a single word and are delimited by the space character (' ').
|
|
/// </summary>
|
|
public string Tags { get; set; }
|
|
/// <summary>
|
|
/// Contains a URL that identifies the location of an image that can be used in association with this search content.
|
|
/// <example><Image height="64" width="64" type="image/png">http://example.com/websearch.png</Image></example>
|
|
/// </summary>
|
|
public string Image { get; set; }
|
|
public string InputEncoding { get; set; } = "UTF-8";
|
|
public string OutputEncoding { get; set; } = "UTF-8";
|
|
/// <summary>
|
|
/// Contains the human-readable name or identifier of the creator or maintainer of the description document.
|
|
/// </summary>
|
|
public string Developer { get; set; } = "kavitareader.com";
|
|
|
|
}
|