13 lines
211 B
Dart
13 lines
211 B
Dart
|
class ActivityTimeSeries {
|
||
|
String type;
|
||
|
int ts;
|
||
|
int seq;
|
||
|
double radius;
|
||
|
|
||
|
ActivityTimeSeries(
|
||
|
{required this.type,
|
||
|
required this.ts,
|
||
|
required this.seq,
|
||
|
required this.radius});
|
||
|
}
|