mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
26 lines
866 B
C#
26 lines
866 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);
|
|
public static string ClipboardTimeout => nameof(ClipboardTimeout);
|
|
public static string HistoryMaxCount => nameof(HistoryMaxCount);
|
|
}
|
|
}
|
|
} |