about summary refs log tree commit diff
path: root/BugMine.Web/Classes/Constants.cs
blob: f2228795afbff18daf06287072bbd084095cc110 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace BugMine.Web.Classes;

public static class Constants {
#if DEBUG
    public const bool Debug = true;
#else
    public const bool Debug = false;
#endif
}