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

namespace MediaBrowser.Controller.Entities.Audio
{
    public interface IHasMusicGenres
    {
        string[] Genres { get; }
    }
}