mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-15 11:03:01 -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 Keywords
|
|
{
|
|
public List<Keyword> Results { get; set; }
|
|
}
|
|
}
|