12 lines
194 B
C#
12 lines
194 B
C#
#nullable disable
|
|
|
|
#pragma warning disable CA1819, CS1591
|
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
{
|
|
public interface IHasMusicGenres
|
|
{
|
|
string[] Genres { get; }
|
|
}
|
|
}
|