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

17 lines
506 B

using System.Collections.Generic;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.ArtistStats
{
public class ArtistStatistics : ResultSet
{
public int ArtistId { get; set; }
public int AlbumCount { get; set; }
public int TrackFileCount { get; set; }
public int TrackCount { get; set; }
public int TotalTrackCount { get; set; }
public long SizeOnDisk { get; set; }
public List<AlbumStatistics> AlbumStatistics { get; set; }
}
}