diff options
Diffstat (limited to 'MediaBrowser.Model/DTO/PluginInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/DTO/PluginInfo.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Model/DTO/PluginInfo.cs b/MediaBrowser.Model/DTO/PluginInfo.cs new file mode 100644 index 000000000..76e9026a6 --- /dev/null +++ b/MediaBrowser.Model/DTO/PluginInfo.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace MediaBrowser.Model.DTO
+{
+ /// <summary>
+ /// This is a serializable stub class that is used by the api to provide information about installed plugins.
+ /// </summary>
+ public class PluginInfo
+ {
+ public string Name { get; set; }
+ public string Path { get; set; }
+ public bool Enabled { get; set; }
+ public bool DownloadToUI { get; set; }
+ public DateTime ConfigurationDateLastModified { get; set; }
+ public Version Version { get; set; }
+ }
+}
|
