9 lines
159 B
Dart
9 lines
159 B
Dart
|
// ignore_for_file: hash_and_equals
|
||
|
|
||
|
class LeaderboardPosition{
|
||
|
int position;
|
||
|
double percentage;
|
||
|
|
||
|
LeaderboardPosition(this.position, this.percentage);
|
||
|
}
|