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