-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCategoryAdminModel.java
More file actions
48 lines (37 loc) · 1010 Bytes
/
CategoryAdminModel.java
File metadata and controls
48 lines (37 loc) · 1010 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
package com.example.quizapp;
public class CategoryAdminModel {
private String id;
private String name;
private String noOfSets;
private String setCounter;
public CategoryAdminModel(String id, String name, String noOfSets, String setCounter) {
this.id = id;
this.name = name;
this.noOfSets = noOfSets;
this.setCounter = setCounter;
}
public String getSetCounter() {
return setCounter;
}
public void setSetCounter(String setCounter) {
this.setCounter = setCounter;
}
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 getNoOfSets() {
return noOfSets;
}
public void setNoOfSets(String noOfSets) {
this.noOfSets = noOfSets;
}
}