24 lines
547 B
Dart
24 lines
547 B
Dart
|
|
class AnalysisSummary {
|
||
|
|
const AnalysisSummary({
|
||
|
|
required this.users,
|
||
|
|
required this.activeUsers,
|
||
|
|
required this.scans,
|
||
|
|
required this.successRate,
|
||
|
|
required this.pointsUsed,
|
||
|
|
});
|
||
|
|
|
||
|
|
/// Number of users for the selected range (not all-time).
|
||
|
|
final int users;
|
||
|
|
|
||
|
|
/// Active users for the selected range (not all-time).
|
||
|
|
final int activeUsers;
|
||
|
|
|
||
|
|
/// Scans for the selected range (not all-time).
|
||
|
|
final int scans;
|
||
|
|
|
||
|
|
final double successRate;
|
||
|
|
|
||
|
|
/// Points used for the selected range (not all-time).
|
||
|
|
final int pointsUsed;
|
||
|
|
}
|