From 68aa1295a5528af7527163275750e3f0b4ef4978 Mon Sep 17 00:00:00 2001
From: Jean-Sebastien Carle <29762210+jscarle@users.noreply.github.com>
Date: Tue, 11 Nov 2025 17:34:30 -0500
Subject: [PATCH] Add 'Pending' state to State enum
---
OnePassword.NET/Common/State.cs | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/OnePassword.NET/Common/State.cs b/OnePassword.NET/Common/State.cs
index 487c751..1353de0 100644
--- a/OnePassword.NET/Common/State.cs
+++ b/OnePassword.NET/Common/State.cs
@@ -18,6 +18,12 @@ public enum State
[EnumMember(Value = "Inactive")]
Inactive,
+ ///
+ /// Pending
+ ///
+ [EnumMember(Value = "Pending")]
+ Pending,
+
///
/// Suspended
///
@@ -52,4 +58,4 @@ public enum State
/// The state is unknown.
///
Unknown
-}
\ No newline at end of file
+}