mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
17 lines
436 B
C#
17 lines
436 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);
|
|
public static string Sample => nameof(Sample);
|
|
public static string DefaultFileFormat => nameof(DefaultFileFormat);
|
|
}
|
|
}
|
|
} |