Alternative metadata source

This commit is contained in:
BookInfo
2021-11-09 21:35:00 +00:00
committed by ta264
parent 225f0b310a
commit 6bdfe01fbc
31 changed files with 455 additions and 622 deletions
@@ -0,0 +1,22 @@
using System.Collections.Generic;
namespace NzbDrone.Core.MetadataSource.BookInfo
{
public class SeriesResource
{
public int ForeignId { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public List<SeriesWorkLinkResource> LinkItems { get; set; }
}
public class SeriesWorkLinkResource
{
public string ForeignSeriesId { get; set; }
public string ForeignWorkId { get; set; }
public string PositionInSeries { get; set; }
public int SeriesPosition { get; set; }
public bool Primary { get; set; }
}
}