mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-09 08:13:20 -05:00
10 lines
230 B
C#
10 lines
230 B
C#
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; }
|
|
}
|