mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 11:59:02 -07:00
12 lines
241 B
C#
12 lines
241 B
C#
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Model.Plugins;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.Omdb
|
|
{
|
|
public class PluginConfiguration : BasePluginConfiguration
|
|
{
|
|
public bool CastAndCrew { get; set; }
|
|
}
|
|
}
|