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/AuthorStatistics.cs

17 lines
506 B

using System.Collections.Generic;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.AuthorStats
{
public class AuthorStatistics : ResultSet
{
public int AuthorId { 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; }
public List<BookStatistics> BookStatistics { get; set; }
}
}