mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
bdebb1593c
Fixes #39
12 lines
280 B
C#
12 lines
280 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Books;
|
|
|
|
namespace Readarr.Api.V1.Bookshelf
|
|
{
|
|
public class BookshelfResource
|
|
{
|
|
public List<BookshelfAuthorResource> Authors { get; set; }
|
|
public MonitoringOptions MonitoringOptions { get; set; }
|
|
}
|
|
}
|