mirror of https://github.com/hykilpikonna/AquaDX
[general] Update .gitignore and add missing file
parent
a4260efe9a
commit
80b92c5fa8
|
@ -33,4 +33,4 @@ build/
|
||||||
### Dev env ###
|
### Dev env ###
|
||||||
application.properties
|
application.properties
|
||||||
aqua.jar
|
aqua.jar
|
||||||
data/
|
/data/
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
package icu.samnyan.aqua.sega.ongeki.model.response.data;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author samnyan (privateamusement@protonmail.com)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class GameEventItem {
|
||||||
|
private long id;
|
||||||
|
private int type;
|
||||||
|
private String startDate;
|
||||||
|
private String endDate;
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
package icu.samnyan.aqua.sega.ongeki.model.response.data;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author samnyan (privateamusement@protonmail.com)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class GameIdListItem {
|
||||||
|
private int id;
|
||||||
|
private int type;
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
package icu.samnyan.aqua.sega.ongeki.model.response.data;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author samnyan (privateamusement@protonmail.com)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class GameSetting {
|
||||||
|
private String dataVersion;
|
||||||
|
@JsonProperty("isMaintenance")
|
||||||
|
private boolean isMaintenance;
|
||||||
|
private int requestInterval;
|
||||||
|
private LocalDateTime rebootStartTime;
|
||||||
|
private LocalDateTime rebootEndTime;
|
||||||
|
@JsonProperty("isBackgroundDistribute")
|
||||||
|
private boolean isBackgroundDistribute;
|
||||||
|
private int maxCountCharacter;
|
||||||
|
private int maxCountItem;
|
||||||
|
private int maxCountMusic;
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
package icu.samnyan.aqua.sega.ongeki.model.response.data;
|
||||||
|
|
||||||
|
import icu.samnyan.aqua.sega.ongeki.model.userdata.UserMusicDetail;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author samnyan (privateamusement@protonmail.com)
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class UserMusicListItem {
|
||||||
|
private int length;
|
||||||
|
private List<UserMusicDetail> userMusicDetailList;
|
||||||
|
}
|
Loading…
Reference in New Issue