JXMovies/Core/JXCMSFramework/IPluginInfo.cs
2020-02-09 19:10:05 +08:00

15 lines
274 B
C#
Executable File

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; }
}
}