mirror of
https://github.com/bitwarden/android.git
synced 2024-12-29 12:28:31 +03:00
19 lines
335 B
C#
19 lines
335 B
C#
|
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
|
|||
|
}
|
|||
|
}
|
|||
|
}
|