mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-01-18 10:00:25 -05:00
13 lines
334 B
C#
13 lines
334 B
C#
using API.Entities.Enums.UserPreferences;
|
|
|
|
namespace API.DTOs.OPDS.Requests;
|
|
|
|
public interface IOpdsRequest
|
|
{
|
|
public string ApiKey { get; init; }
|
|
public string Prefix { get; init; }
|
|
public string BaseUrl { get; init; }
|
|
public int UserId { get; init; }
|
|
public AppUserOpdsPreferences Preferences { get; init; }
|
|
}
|