Bitwarden-app-android-iphon.../src/Core/Utilities/CoreHelpers.cs

19 lines
335 B
C#
Raw Normal View History

2019-04-09 16:35:21 +02:00
using System;
namespace Bit.Core.Utilities
{
public static class CoreHelpers
{
public static readonly DateTime Epoc = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
public static bool InDebugMode()
{
#if DEBUG
return true;
#else
return false;
#endif
}
}
}