fixes #532 - Add ability to sort music artists/genres by song or music video count

This commit is contained in:
Luke Pulverenti
2013-09-10 16:23:41 -04:00
parent 06298d489c
commit 229e050cd3
12 changed files with 261 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
using MediaBrowser.Model.Dto;
using System.Runtime.Serialization;
using MediaBrowser.Model.Dto;
using System;
using System.Collections.Generic;
@@ -24,8 +25,10 @@ namespace MediaBrowser.Controller.Entities
return "Studio-" + Name;
}
[IgnoreDataMember]
public ItemByNameCounts ItemCounts { get; set; }
[IgnoreDataMember]
public Dictionary<Guid, ItemByNameCounts> UserItemCounts { get; set; }
}
}