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.
Lidarr/src/NzbDrone.Core/ArtistStats/AlbumStatistics.cs

16 lines
451 B

using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.ArtistStats
{
public class AlbumStatistics : ResultSet
{
public int ArtistId { get; set; }
public int AlbumId { get; set; }
public int TrackFileCount { get; set; }
public int TrackCount { get; set; }
public int AvailableTrackCount { get; set; }
public int TotalTrackCount { get; set; }
public long SizeOnDisk { get; set; }
}
}