mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-10-17 12:01:01 -04:00
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;
|
|
}
|
|
}
|
|
}
|