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,10 @@
namespace JXCMS.Core.Extensions
{
public static class StringExtension
{
public static bool IsNullOrEmpty(this string str)
{
return string.IsNullOrEmpty(str);
}
}
}

View File

@@ -0,0 +1,10 @@
namespace Microsoft.AspNetCore.Mvc
{
public static class UrlExtensions
{
public static string ContentAdmin(this IUrlHelper url, string path)
{
return url.Content("~/Admin/Content/" + path);
}
}
}