Files
modernkeepass/WinAppCommon/Common/Constants.cs
Geoffroy BONNEVILLE 654bd6b4e5 Corrected some Sonar issues
Changed a little bit the Open and Set credentials User controls
2020-05-02 14:21:59 +02:00

24 lines
710 B
C#

namespace ModernKeePass.Common
{
public static class Constants
{
public static class Navigation
{
public static string MainPage => nameof(MainPage);
public static string EntryPage => nameof(EntryPage);
public static string GroupPage => nameof(GroupPage);
}
public static class File
{
public static int OneMegaByte => 1048576;
}
public static class Settings
{
public static string SaveSuspend => nameof(SaveSuspend);
public static string Sample => nameof(Sample);
public static string DefaultFileFormat => nameof(DefaultFileFormat);
}
}
}