PluginManifest.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using System;
  2. namespace Emby.Server.Implementations.Plugins
  3. {
  4. /// <summary>
  5. /// Defines a Plugin manifest file.
  6. /// </summary>
  7. public class PluginManifest
  8. {
  9. /// <summary>
  10. /// Gets or sets the category of the plugin.
  11. /// </summary>
  12. public string Category { get; set; }
  13. /// <summary>
  14. /// Gets or sets the changelog information.
  15. /// </summary>
  16. public string Changelog { get; set; }
  17. /// <summary>
  18. /// Gets or sets the description of the plugin.
  19. /// </summary>
  20. public string Description { get; set; }
  21. /// <summary>
  22. /// Gets or sets the Global Unique Identifier for the plugin.
  23. /// </summary>
  24. public Guid Guid { get; set; }
  25. /// <summary>
  26. /// Gets or sets the Name of the plugin.
  27. /// </summary>
  28. public string Name { get; set; }
  29. /// <summary>
  30. /// Gets or sets an overview of the plugin.
  31. /// </summary>
  32. public string Overview { get; set; }
  33. /// <summary>
  34. /// Gets or sets the owner of the plugin.
  35. /// </summary>
  36. public string Owner { get; set; }
  37. /// <summary>
  38. /// Gets or sets the compatibility version for the plugin.
  39. /// </summary>
  40. public string TargetAbi { get; set; }
  41. /// <summary>
  42. /// Gets or sets the timestamp of the plugin.
  43. /// </summary>
  44. public DateTime Timestamp { get; set; }
  45. /// <summary>
  46. /// Gets or sets the Version number of the plugin.
  47. /// </summary>
  48. public string Version { get; set; }
  49. }
  50. }