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

12 lines
348 B

using System.Collections.Generic;
namespace NzbDrone.Core.MetadataSource.SkyHook
{
public class BulkResource
{
public List<AuthorSummaryResource> AuthorMetadata { get; set; } = new List<AuthorSummaryResource>();
public List<WorkResource> Works { get; set; }
public List<SeriesResource> Series { get; set; }
}
}