Files
Readarr/src/Readarr.Api.V1/BookShelf/BookshelfResource.cs
T
2020-07-02 22:04:39 +01:00

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; }
}
}