blob: a9eecdd9ee46ad98325cdfc85d94b6e20bd24537 (
plain)
1
2
3
4
5
6
7
8
9
|
using MediaBrowser.Model.Plugins;
namespace MediaBrowser.Providers.Plugins.Omdb
{
public class PluginConfiguration : BasePluginConfiguration
{
public bool CastAndCrew { get; set; }
}
}
|