This commit is contained in:
j4587698
2020-02-09 19:10:05 +08:00
commit 358617b0c3
414 changed files with 96012 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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; }
}
}

View File

@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
</Project>