mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
22 lines
576 B
C#
22 lines
576 B
C#
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 int ForeignWorkId { get; set; }
|
|
public string PositionInSeries { get; set; }
|
|
public int SeriesPosition { get; set; }
|
|
public bool Primary { get; set; }
|
|
}
|
|
}
|