Files
PiliPlus/lib/models_new/member/season_web/page.dart
2026-04-05 12:11:22 +08:00

10 lines
152 B
Dart

class Page {
int? total;
Page({this.total});
factory Page.fromJson(Map<String, dynamic> json) => Page(
total: json['total'] as int?,
);
}