admin
2022-03-31 02f1c9fd2c594323f772f8e8f0f2187a285c1749
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/// Picture : "http://pic2.iqiyipic.com/image/20200902/65/f6/a_50181443_m_601_m3.jpg"
/// Name : "绅士的品格"
/// UpdateInfo : "更新:2年前"
/// IsAttention : false
 
class VideoAttentionModel {
  VideoAttentionModel({
      String? picture, 
      String? name, 
      String? updateInfo, 
      bool? attention,}){
    _picture = picture;
    _name = name;
    _updateInfo = updateInfo;
    _attention = attention;
}
 
  VideoAttentionModel.fromJson(dynamic json) {
    _picture = json['Picture'];
    _name = json['Name'];
    _updateInfo = json['UpdateInfo'];
    _attention = json['Attention'];
  }
  String? _picture;
  String? _name;
  String? _updateInfo;
  bool? _attention;
 
  String? get picture => _picture;
  String? get name => _name;
  String? get updateInfo => _updateInfo;
  bool? get attention => _attention;
 
 
  set attention(value) {
    _attention = value;
  }
 
 
  Map<String, dynamic> toJson() {
    final map = <String, dynamic>{};
    map['Picture'] = _picture;
    map['Name'] = _name;
    map['UpdateInfo'] = _updateInfo;
    map['Attention'] = _attention;
    return map;
  }
 
}