mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-27 07:10:17 -05:00
10 lines
185 B
C#
10 lines
185 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
|
|
{
|
|
public class Videos
|
|
{
|
|
public List<Video> Results { get; set; }
|
|
}
|
|
}
|