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/Parse/ParseResource.cs

17 lines
450 B

using System.Collections.Generic;
using NzbDrone.Core.Parser.Model;
using Readarr.Api.V1.Author;
using Readarr.Api.V1.Books;
using Readarr.Http.REST;
namespace Readarr.Api.V1.Parse
{
public class ParseResource : RestResource
{
public string Title { get; set; }
public ParsedBookInfo ParsedBookInfo { get; set; }
public AuthorResource Author { get; set; }
public List<BookResource> Books { get; set; }
}
}