We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f4326 commit 674e309Copy full SHA for 674e309
1 file changed
licensechain/models.py
@@ -175,6 +175,14 @@ class LicenseStats(BaseLicenseChainModel):
175
revenue: float = 0.0
176
177
178
+class UserStats(BaseLicenseChainModel):
179
+ """User statistics model."""
180
+
181
+ total: int = 0
182
+ active: int = 0
183
+ inactive: int = 0
184
185
186
class ValidationResult(BaseLicenseChainModel):
187
"""License validation result model."""
188
0 commit comments