aboutsummaryrefslogtreecommitdiff
path: root/lib/NVault.VaultExtensions/src/IVaultClientScope.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-01-28 19:56:02 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-01-28 19:56:02 -0500
commit87645bfad3943e1110e4cb2e038124083e8ae793 (patch)
treec327a4437c98d973f45c313cf8259ad75515c4fe /lib/NVault.VaultExtensions/src/IVaultClientScope.cs
parentc438ee90e3be4e5e01ae3d045d6b841a03bd46eb (diff)
progress update
Diffstat (limited to 'lib/NVault.VaultExtensions/src/IVaultClientScope.cs')
-rw-r--r--lib/NVault.VaultExtensions/src/IVaultClientScope.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/NVault.VaultExtensions/src/IVaultClientScope.cs b/lib/NVault.VaultExtensions/src/IVaultClientScope.cs
new file mode 100644
index 0000000..d53bc4a
--- /dev/null
+++ b/lib/NVault.VaultExtensions/src/IVaultClientScope.cs
@@ -0,0 +1,33 @@
+// Copyright (C) 2024 Vaughn Nugent
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero General Public License as
+// published by the Free Software Foundation, either version 3 of the
+// License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+namespace NVault.VaultExtensions
+{
+ /// <summary>
+ /// Represents a vault client scope configuration
+ /// </summary>
+ public interface IVaultClientScope
+ {
+ /// <summary>
+ /// The mount point for the vault
+ /// </summary>
+ string? MountPoint { get; }
+
+ /// <summary>
+ /// The entry path for the vault
+ /// </summary>
+ string? EntryPath { get; }
+ }
+} \ No newline at end of file