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.
18 lines
520 B
18 lines
520 B
using System;
|
|
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; }
|
|
}
|
|
}
|