T2CodeLib/src/main/java/net/t2code/t2codelib/T2CupdateWebData.java

32 lines
852 B
Java
Raw Normal View History

2022-11-14 13:41:45 +00:00
package net.t2code.t2codelib;
2022-11-10 10:28:55 +00:00
import lombok.Getter;
public class T2CupdateWebData {
@Getter
2022-11-14 00:06:44 +00:00
private String updateTitle;
2022-11-10 10:28:55 +00:00
@Getter
2022-11-14 00:06:44 +00:00
private String version;
2022-11-10 10:28:55 +00:00
@Getter
2022-11-14 00:06:44 +00:00
private String updateDescription;
2022-11-10 10:28:55 +00:00
@Getter
2022-11-10 13:00:59 +00:00
private String updateUrl;
2022-11-10 10:28:55 +00:00
@Getter
2022-11-10 13:00:59 +00:00
private String publishedAt;
2022-11-10 10:28:55 +00:00
@Getter
private String downloadURL;
@Getter
2022-11-10 13:00:59 +00:00
private boolean preRelease;
2022-11-10 10:28:55 +00:00
2022-11-14 00:06:44 +00:00
public T2CupdateWebData(String updateTitle, String version, String updateDescription, String updateUrl, String publishedAt, String downloadURL, boolean preRelease) {
this.updateTitle = updateTitle;
this.version = version;
this.updateDescription = updateDescription;
2022-11-10 13:00:59 +00:00
this.updateUrl = updateUrl;
this.publishedAt = publishedAt;
2022-11-10 10:28:55 +00:00
this.downloadURL = downloadURL;
2022-11-10 13:00:59 +00:00
this.preRelease = preRelease;
2022-11-10 10:28:55 +00:00
}
}