Files
pgsql-jellyfin/MediaBrowser.Controller/Providers/MusicVideoInfo.cs

18 lines
398 B
C#

// <copyright file="MusicVideoInfo.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
#nullable disable
#pragma warning disable CS1591
using System.Collections.Generic;
namespace MediaBrowser.Controller.Providers
{
public class MusicVideoInfo : ItemLookupInfo
{
public IReadOnlyList<string> Artists { get; set; }
}
}