Files
modernkeepass/WinAppCommon/Common/Constants.cs
Geoffroy BONNEVILLE a1085b6010 Add MVVM Light library
Updated nuget packages
2020-04-21 13:07:17 +02:00

24 lines
682 B
C#

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