jellyfin/MediaBrowser.Controller/Providers/MusicVideoInfo.cs

14 lines
254 B
C#
Raw Normal View History

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