jellyfin-server/MediaBrowser.Providers/Tmdb/Models/General/StillImages.cs

10 lines
185 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace MediaBrowser.Providers.Tmdb.Models.General
{
public class StillImages
{
public List<Still> stills { get; set; }
}
}