You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/src/Readarr.Api.V1/Search/SearchResource.cs

15 lines
326 B

using Readarr.Api.V1.Author;
using Readarr.Api.V1.Books;
using Readarr.Http.REST;
namespace Readarr.Api.V1.Search
{
public class
SearchResource : RestResource
{
public string ForeignId { get; set; }
public AuthorResource Author { get; set; }
public BookResource Book { get; set; }
}
}