blob: d3e47c84a44b538f797e5c839c3ecceece7dbf00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
namespace MediaBrowser.Common.Plugins
{
public class BasePluginConfiguration
{
public bool Enabled { get; set; }
public BasePluginConfiguration()
{
Enabled = true;
}
}
}
|