mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
19 lines
381 B
C#
19 lines
381 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace MediaBrowser.Model.Plugins
|
|
{
|
|
public class BasePluginConfiguration
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
[IgnoreDataMember]
|
|
public DateTime DateLastModified { get; set; }
|
|
|
|
public BasePluginConfiguration()
|
|
{
|
|
Enabled = true;
|
|
}
|
|
}
|
|
}
|