@@ -21,14 +21,14 @@ public class KeywordResponse {
21
21
private int order ;
22
22
private int importance ;
23
23
private int totalQuizCount ;
24
- private int answeredQuizCount ;
24
+ private int doneQuizCount ;
25
25
private Long parentKeywordId ;
26
26
private List <RecommendedPostResponse > recommendedPosts ;
27
27
private List <KeywordResponse > childrenKeywords ;
28
28
29
29
public KeywordResponse (final Long keywordId , final String name , final String description ,
30
30
final int order , final int importance , final int totalQuizCount ,
31
- final int answeredQuizCount , final Long parentKeywordId ,
31
+ final int doneQuizCount , final Long parentKeywordId ,
32
32
final List <RecommendedPostResponse > recommendedPosts ,
33
33
final List <KeywordResponse > childrenKeywords ) {
34
34
this .keywordId = keywordId ;
@@ -37,7 +37,7 @@ public KeywordResponse(final Long keywordId, final String name, final String des
37
37
this .order = order ;
38
38
this .importance = importance ;
39
39
this .totalQuizCount = totalQuizCount ;
40
- this .answeredQuizCount = answeredQuizCount ;
40
+ this .doneQuizCount = doneQuizCount ;
41
41
this .parentKeywordId = parentKeywordId ;
42
42
this .recommendedPosts = recommendedPosts ;
43
43
this .childrenKeywords = childrenKeywords ;
0 commit comments