Files
modernkeepass/WinAppCommon/Common/Constants.cs
Geoffroy BONNEVILLE 73670e8689 Create a shared project with all Win App common files (8.1 and 10)
Finally use the dependency injected Resource Service
2020-04-17 16:56:07 +02:00

15 lines
296 B
C#

namespace ModernKeePass.Common
{
public class Constants
{
public class File
{
public static int OneMegaByte => 1048576;
}
public class Settings
{
public static string SaveSuspend => nameof(SaveSuspend);
}
}
}