mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
11 lines
221 B
C#
11 lines
221 B
C#
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.General
|
|
{
|
|
public class Keywords
|
|
{
|
|
public List<Keyword> Results { get; set; }
|
|
}
|
|
}
|