6f617434
liangchengyou
feat:磨耳朵/视频跟读列表页接口调整
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import 'package:wow_english/generated/json/base/json_field.dart';
import 'package:wow_english/generated/json/follow_read_entity.g.dart';
import 'dart:convert';
@JsonSerializable()
class FollowReadEntity {
String? coverUrl;
String? createTime;
String? deleted;
String? id;
bool? lock;
String? modifyTime;
int? sortOrder;
int? star;
int? status;
String? title;
int? videoTotal;
FollowReadEntity();
factory FollowReadEntity.fromJson(Map<String, dynamic> json) => $FollowReadEntityFromJson(json);
Map<String, dynamic> toJson() => $FollowReadEntityToJson(this);
@override
String toString() {
return jsonEncode(this);
}
}
|