mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
14 lines
254 B
C#
14 lines
254 B
C#
#nullable disable
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public class MusicVideoInfo : ItemLookupInfo
|
|
{
|
|
public IReadOnlyList<string> Artists { get; set; }
|
|
}
|
|
}
|