Fixed: Editing authors from bookshelf

Fixes #39
This commit is contained in:
ta264
2020-07-02 22:04:39 +01:00
parent be03e1258a
commit bdebb1593c
4 changed files with 1 additions and 1 deletions
@@ -0,0 +1,11 @@
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; }
}
}