mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-02 00:58:19 +08:00
14 lines
355 B
Dart
14 lines
355 B
Dart
import 'package:PiliPlus/models_new/login_log/list.dart';
|
|
|
|
class LoginLogData {
|
|
List<LoginLogItem>? list;
|
|
|
|
LoginLogData({this.list});
|
|
|
|
factory LoginLogData.fromJson(Map<String, dynamic> json) => LoginLogData(
|
|
list: (json['list'] as List<dynamic>?)
|
|
?.map((e) => LoginLogItem.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|
|
}
|