15 lines
416 B
C#
15 lines
416 B
C#
namespace Ink_Canvas.Plugins
|
|
{
|
|
public class PluginInfo
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Version { get; set; }
|
|
public string Description { get; set; }
|
|
public string Author { get; set; }
|
|
public int Order { get; set; }
|
|
public IPlugin Instance { get; set; }
|
|
public bool IsLoaded { get; set; }
|
|
}
|
|
}
|