Files
jellyfin-jellyfin-1/MediaBrowser.Providers/Plugins/Tmdb/Models/General/Videos.cs

12 lines
226 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System.Collections.Generic;
2020-05-31 15:23:09 +09:00
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
{
public class Videos
{
2020-09-08 16:12:47 +02:00
public IReadOnlyList<Video> Results { get; set; }
}
}