add StoreCreationOptions class

This commit is contained in:
2025-12-02 19:24:16 +03:00
parent f8ddcddc6f
commit 5ab0fc9f1e

View File

@@ -0,0 +1,9 @@
using KeyKeeper.PasswordStore.Crypto;
namespace KeyKeeper.PasswordStore;
public record StoreCreationOptions
{
public int LockTimeoutSeconds { get; init; }
public CompositeKey Key { get; init; }
}