You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/src/NzbDrone.Core/AuthorStats/BookStatistics.cs

16 lines
445 B

using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.AuthorStats
{
public class BookStatistics : ResultSet
{
public int AuthorId { get; set; }
public int BookId { get; set; }
public int BookFileCount { get; set; }
public int BookCount { get; set; }
public int AvailableBookCount { get; set; }
public int TotalBookCount { get; set; }
public long SizeOnDisk { get; set; }
}
}