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/SkyHook/SkyHookResource/AuthorSummaryResource.cs

18 lines
510 B

namespace NzbDrone.Core.MetadataSource.SkyHook
{
public class AuthorSummaryResource
{
public int GoodreadsId { get; set; }
public string TitleSlug { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string ImageUrl { get; set; }
public string Url { get; set; }
public int ReviewCount { get; set; }
public int RatingsCount { get; set; }
public double AverageRating { get; set; }
}
}