14 lines
243 B
C#
14 lines
243 B
C#
|
|
namespace MediaBrowser.Model.Plugins
|
|
{
|
|
public class BasePluginConfiguration
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public BasePluginConfiguration()
|
|
{
|
|
Enabled = true;
|
|
}
|
|
}
|
|
}
|