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/NzbDrone.Core/MetadataSource/BookInfo/BookInfoResource/WorkResource.cs

18 lines
548 B

using System;
using System.Collections.Generic;
namespace NzbDrone.Core.MetadataSource.BookInfo
{
public class WorkResource
{
public int ForeignId { get; set; }
public string Title { get; set; }
public string TitleSlug { get; set; }
public string Url { get; set; }
public DateTime? ReleaseDate { get; set; }
public List<string> Genres { get; set; }
public List<int> RelatedWorks { get; set; }
public List<BookResource> Books { get; set; } = new List<BookResource>();
}
}