16 lines
295 B
C#
16 lines
295 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace MediaBrowser.Model.Plugins
|
|
{
|
|
public class BasePluginConfiguration
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public BasePluginConfiguration()
|
|
{
|
|
Enabled = true;
|
|
}
|
|
}
|
|
}
|