84b626d344
屎山
17 lines
431 B
C#
17 lines
431 B
C#
using System;
|
|
|
|
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; }
|
|
}
|
|
}
|