mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-29 14:03:49 +01:00
13 lines
243 B
C#
13 lines
243 B
C#
|
|
namespace MediaBrowser.Model.Plugins
|
|
{
|
|
public class BasePluginConfiguration
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public BasePluginConfiguration()
|
|
{
|
|
Enabled = true;
|
|
}
|
|
}
|
|
}
|