PluginInfo.cs 547 B

1234567891011121314151617
  1. using System;
  2. namespace MediaBrowser.Model.DTO
  3. {
  4. /// <summary>
  5. /// This is a serializable stub class that is used by the api to provide information about installed plugins.
  6. /// </summary>
  7. public class PluginInfo
  8. {
  9. public string Name { get; set; }
  10. public string Path { get; set; }
  11. public bool Enabled { get; set; }
  12. public bool DownloadToUI { get; set; }
  13. public DateTime ConfigurationDateLastModified { get; set; }
  14. public Version Version { get; set; }
  15. }
  16. }