-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRecordList.java
More file actions
63 lines (48 loc) · 1.27 KB
/
RecordList.java
File metadata and controls
63 lines (48 loc) · 1.27 KB
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
53
54
55
56
57
58
59
60
61
62
63
package com.arloor.forwardproxy.dnspod.result;
import java.util.List;
public class RecordList {
public static class Record {
private String id;
private String name;
private String value;
private String updated_on;
private String line_id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getUpdated_on() {
return updated_on;
}
public void setUpdated_on(String updated_on) {
this.updated_on = updated_on;
}
public String getLine_id() {
return line_id;
}
public void setLine_id(String line_id) {
this.line_id = line_id;
}
}
private List<Record> records;
public List<Record> getRecords() {
return records;
}
public void setRecords(List<Record> records) {
this.records = records;
}
}