mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-14 10:33:22 -05:00
10 lines
189 B
C#
10 lines
189 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
|
|
{
|
|
public class StillImages
|
|
{
|
|
public List<Still> Stills { get; set; }
|
|
}
|
|
}
|