2020-04-14 13:44:07 +02:00
|
|
|
|
namespace ModernKeePass.Common
|
|
|
|
|
{
|
2020-05-02 14:21:59 +02:00
|
|
|
|
public static class Constants
|
2020-04-14 13:44:07 +02:00
|
|
|
|
{
|
2020-05-02 14:21:59 +02:00
|
|
|
|
public static class Navigation
|
2020-04-21 13:07:17 +02:00
|
|
|
|
{
|
|
|
|
|
public static string MainPage => nameof(MainPage);
|
|
|
|
|
public static string EntryPage => nameof(EntryPage);
|
|
|
|
|
public static string GroupPage => nameof(GroupPage);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-02 14:21:59 +02:00
|
|
|
|
public static class File
|
2020-04-14 13:44:07 +02:00
|
|
|
|
{
|
|
|
|
|
public static int OneMegaByte => 1048576;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-02 14:21:59 +02:00
|
|
|
|
public static class Settings
|
2020-04-14 13:44:07 +02:00
|
|
|
|
{
|
|
|
|
|
public static string SaveSuspend => nameof(SaveSuspend);
|
2020-04-20 20:02:43 +02:00
|
|
|
|
public static string Sample => nameof(Sample);
|
|
|
|
|
public static string DefaultFileFormat => nameof(DefaultFileFormat);
|
2020-05-12 18:43:37 +02:00
|
|
|
|
public static string ClipboardTimeout => nameof(ClipboardTimeout);
|
|
|
|
|
public static string HistoryMaxCount => nameof(HistoryMaxCount);
|
2020-05-13 18:59:26 +02:00
|
|
|
|
|
|
|
|
|
public static class PasswordGenerationOptions
|
|
|
|
|
{
|
|
|
|
|
public static string UpperCasePattern => nameof(UpperCasePattern);
|
|
|
|
|
public static string LowerCasePattern => nameof(LowerCasePattern);
|
|
|
|
|
public static string DigitsPattern => nameof(DigitsPattern);
|
|
|
|
|
public static string MinusPattern => nameof(MinusPattern);
|
|
|
|
|
public static string UnderscorePattern => nameof(UnderscorePattern);
|
|
|
|
|
public static string SpacePattern => nameof(SpacePattern);
|
|
|
|
|
public static string SpecialPattern => nameof(SpecialPattern);
|
|
|
|
|
public static string BracketsPattern => nameof(BracketsPattern);
|
|
|
|
|
}
|
2020-04-14 13:44:07 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|