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/SeriesResource.cs

21 lines
515 B

using System.Collections.Generic;
namespace NzbDrone.Core.MetadataSource.SkyHook
{
public class SeriesResource
{
public int GoodreadsId { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public List<SeriesWorkLinkResource> Works { get; set; }
}
public class SeriesWorkLinkResource
{
public int GoodreadsId { get; set; }
public string Position { get; set; }
public bool Primary { get; set; }
}
}