jellyfin/MediaBrowser.Controller/Providers/MusicVideoInfo.cs

14 lines
254 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
2019-08-29 22:28:33 +02:00
using System.Collections.Generic;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Providers
{
public class MusicVideoInfo : ItemLookupInfo
{
2019-08-29 22:28:33 +02:00
public IReadOnlyList<string> Artists { get; set; }
2018-12-28 00:27:57 +01:00
}
}