mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-23 15:30:56 -04:00
12 lines
226 B
C#
12 lines
226 B
C#
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
|
|
{
|
|
public class Videos
|
|
{
|
|
public IReadOnlyList<Video> Results { get; set; }
|
|
}
|
|
}
|