keepass2android/src/Kp2aBusinessLogic/PreferenceKey.cs
Philipp Crocoll 84aeb31fd0 * Introduced IFileStorage interface: Better abstraction than current IOConnection (suitable for cloud support). Currently only implemented by the built-in IOConnection (local/http/ftp)
* Implemented Merge functionality for SaveDB. UI is not yet implemented!
* Added tests for merge functionality
2013-07-09 09:59:17 +02:00

12 lines
241 B
C#

namespace keepass2android
{
/// <summary>
/// Keys which can be used to get a preference setting
/// </summary>
public enum PreferenceKey
{
remember_keyfile,
UseFileTransactions,
CheckForFileChangesOnSave
}
}