Skip to content

Commit

Permalink
feat: add license metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
muneebkq committed Aug 29, 2024
1 parent 8da1dfc commit 1240c1a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Cryptlex.LexActivator/UserLicense.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,16 @@ public class UserLicense
/// The license type (node-locked or hosted-floating).
/// </summary>
public string Type;

/// <summary>
/// The license metadata.
/// </summary>
public List<Metadata> Metadata = new List<Metadata>();
}

public class Metadata
{
public string Key;
public string Value;
}
}

0 comments on commit 1240c1a

Please sign in to comment.