Skip to content
This repository has been archived by the owner on Dec 4, 2022. It is now read-only.

Commit

Permalink
V0.1.2 Added order double to novel chapter, Renamed chapterNum to rel…
Browse files Browse the repository at this point in the history
…ease
  • Loading branch information
doomsdayrs committed Oct 16, 2019
1 parent f550e96 commit 331a838
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,17 @@ public class NovelChapter implements Serializable {
static final long serialVersionUID = 1001;

public String release = "";
public String chapterNum = "";
public String title = "";
public String link = "";
public double order;

@Override
public String toString() {
return "NovelChapter{" +
"release='" + release + '\'' +
", chapterNum=" + chapterNum +
", title='" + title + '\'' +
", link='" + link + '\'' +
", order=" + order +
'}';
}
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.Doomsdayrs.api</groupId>
<artifactId>shosetsu-services</artifactId>
<version>0.1.1</version>
<version>0.1.2</version>
<build>
<sourceDirectory>core</sourceDirectory>
<plugins>
Expand Down

0 comments on commit 331a838

Please sign in to comment.