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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|