Queue search

This commit is contained in:
2017-02-02 12:28:22 -05:00
parent e3779a323c
commit 77a35e87d3
11 changed files with 170 additions and 71 deletions
+14
View File
@@ -0,0 +1,14 @@
namespace LeafWeb.WebCms.Controllers
{
public static class CompileFlag
{
public static bool IsDebug()
{
#if DEBUG
return true;
#else
return false;
#endif
}
}
}