diff --git a/src/Cryptlex.LexActivator/FeatureEntitlement.cs b/src/Cryptlex.LexActivator/FeatureEntitlement.cs
index a70c79a..5b20656 100644
--- a/src/Cryptlex.LexActivator/FeatureEntitlement.cs
+++ b/src/Cryptlex.LexActivator/FeatureEntitlement.cs
@@ -21,5 +21,10 @@ public class FeatureEntitlement
///
public string Value;
+ ///
+ /// Timestamp when the license feature entitlement will expire
+ ///
+ public long ExpiresAt;
+
}
}
\ No newline at end of file
diff --git a/src/Cryptlex.LexActivator/UserLicense.cs b/src/Cryptlex.LexActivator/UserLicense.cs
index 598936e..46b502e 100644
--- a/src/Cryptlex.LexActivator/UserLicense.cs
+++ b/src/Cryptlex.LexActivator/UserLicense.cs
@@ -21,6 +21,16 @@ public class UserLicense
///
public string Key;
+ ///
+ /// Total number of activations for the license.
+ ///
+ public uint TotalActivations;
+
+ ///
+ /// Total number of deactivations for the license.
+ ///
+ public uint TotalDeactivations;
+
///
/// The license type (node-locked or hosted-floating).
///