aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Audio/IHasMusicGenres.cs
blob: fdf939e359d12289b53f4a68f14e6736dfbef7b9 (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

namespace MediaBrowser.Controller.Entities.Audio
{
    public interface IHasMusicGenres
    {
        List<string> Genres { get; }
    }
}