From 5ab0fc9f1ee605b71c193e42cb427d872a7a5cb1 Mon Sep 17 00:00:00 2001 From: Slavasil Date: Tue, 2 Dec 2025 19:24:16 +0300 Subject: [PATCH] add StoreCreationOptions class --- src/KeyKeeper/PasswordStore/StoreCreationOptions.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/KeyKeeper/PasswordStore/StoreCreationOptions.cs diff --git a/src/KeyKeeper/PasswordStore/StoreCreationOptions.cs b/src/KeyKeeper/PasswordStore/StoreCreationOptions.cs new file mode 100644 index 0000000..e35eadf --- /dev/null +++ b/src/KeyKeeper/PasswordStore/StoreCreationOptions.cs @@ -0,0 +1,9 @@ +using KeyKeeper.PasswordStore.Crypto; + +namespace KeyKeeper.PasswordStore; + +public record StoreCreationOptions +{ + public int LockTimeoutSeconds { get; init; } + public CompositeKey Key { get; init; } +} \ No newline at end of file