parent
60e8f47194
commit
81f655803d
@ -0,0 +1,32 @@
|
||||
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
|
||||
|
||||
using System;
|
||||
|
||||
namespace Emby.Server.Implementations.Plugins
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines a Plugin manifest file.
|
||||
/// </summary>
|
||||
public class PlugInManifest
|
||||
{
|
||||
public string Category { get; set; }
|
||||
|
||||
public string Changelog { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
|
||||
public Guid Guid { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public string Overview { get; set; }
|
||||
|
||||
public string Owner { get; set; }
|
||||
|
||||
public string TargetAbi { get; set; }
|
||||
|
||||
public DateTime Timestamp { get; set; }
|
||||
|
||||
public string Version { get; set; }
|
||||
}
|
||||
}
|
Loading…
Reference in new issue