Skip to content

Commit

Permalink
#31 #37 #38 1.0.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yamin8000 committed Jan 1, 2022
1 parent 026f336 commit d57f28c
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ dependencies {
- 1.0.2 - WIP
- 1.0.3 - WIP
- 1.0.4 - WIP
- 1.0.5 - WIP

## License

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ shadowJar {
apply plugin: "com.vanniktech.maven.publish"

group 'io.github.TradersTeam'
version "1.0.4"
version "1.0.5"

allprojects {
repositories {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package io.githhub.TradersTeam.grand_node_java_client.enums;

public enum IntervalUnit {
Minute(0),
Hour(5),
Day(10);

final int value;

IntervalUnit(int value) {
this.value = value;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package io.githhub.TradersTeam.grand_node_java_client.models;

import lombok.Builder;
import lombok.Getter;
import lombok.Setter;

@Builder
@Getter
@Setter
public class LoginModel {
private String Email;
private String Password;
}

0 comments on commit d57f28c

Please sign in to comment.