using MediaBrowser.Model.Dto;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities.Audio
{
///
/// Class Artist
///
public class Artist : BaseItem, IItemByName, IHasMusicGenres
{
public Artist()
{
ItemCounts = new ItemByNameCounts();
UserItemCounts = new Dictionary();
}
public string LastFmImageUrl { get; set; }
///
/// Gets the user data key.
///
/// System.String.
public override string GetUserDataKey()
{
return "Artist-" + Name;
}
public ItemByNameCounts ItemCounts { get; set; }
public Dictionary UserItemCounts { get; set; }
}
}