mirror of
https://github.com/Readarr/Readarr
synced 2025-12-15 12:52:27 +01:00
16 lines
450 B
C#
16 lines
450 B
C#
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; }
|
|
}
|
|
}
|