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