VideoModel.java
919 Bytes
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
50
51
52
package com.cnlive.gundam.video.model;
/**
* Created by gujun on 2017/4/28.
*/
public class VideoModel {
private String title;
private String id;
private String type;
private String rates;
public VideoModel(String title, String id, String type, String rates) {
this.title = title;
this.id = id;
this.type = type;
this.rates = rates;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getRates() {
return rates;
}
public void setRates(String rates) {
this.rates = rates;
}
}