JXMovies/Core/JXCMSFramework/IPluginInfo.cs

15 lines
274 B
C#
Raw Permalink Normal View History

2020-02-09 19:10:05 +08:00
namespace JXCMSFramework
{
public interface IPluginInfo
{
string PluginName { get; set; }
string Author { get; set; }
string Version { get; set; }
int BuilderNumber { get; set; }
string Description { get; set; }
}
}