Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Cryptlex.LexActivator/FeatureEntitlement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,10 @@ public class FeatureEntitlement
/// </summary>
public string Value;

/// <summary>
/// Timestamp when the license feature entitlement will expire
/// </summary>
public long ExpiresAt;

}
}
10 changes: 10 additions & 0 deletions src/Cryptlex.LexActivator/UserLicense.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ public class UserLicense
/// </summary>
public string Key;

/// <summary>
/// Total number of activations for the license.
/// </summary>
public uint TotalActivations;

/// <summary>
/// Total number of deactivations for the license.
/// </summary>
public uint TotalDeactivations;

/// <summary>
/// The license type (node-locked or hosted-floating).
/// </summary>
Expand Down