mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-22 03:31:09 +08:00
15
lib/models_new/history/cursor.dart
Normal file
15
lib/models_new/history/cursor.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
class Cursor {
|
||||
int? max;
|
||||
int? viewAt;
|
||||
String? business;
|
||||
int? ps;
|
||||
|
||||
Cursor({this.max, this.viewAt, this.business, this.ps});
|
||||
|
||||
factory Cursor.fromJson(Map<String, dynamic> json) => Cursor(
|
||||
max: json['max'] as int?,
|
||||
viewAt: json['view_at'] as int?,
|
||||
business: json['business'] as String?,
|
||||
ps: json['ps'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user