diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-17 09:16:50 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-17 09:16:50 -0400 |
| commit | 5c094afd7e79934cb02f29a9a0080ed12c7e1098 (patch) | |
| tree | 4ea0724f3fae7b65459a36ae56ff164fc67da8f0 /MediaBrowser.Model/DTO/PluginInfo.cs | |
| parent | 8a2e0badaeed08e747f5607ce6ecf46225873839 (diff) | |
Made BaseJsonHandler strongly typed. Moved DTO entities to their own DTO namespace in Model.
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; }
+ }
+}
|
