blob: 152fa8dd05b0626eb5a44e72d05fe46c3c7656ea [file] [log] [blame]
package model
import groovy.transform.CompileStatic
@CompileStatic
class DownloadPackage {
String version
String releaseNotes
String windowsInstaller
boolean stable = false
void releaseNotes(String notes) {
releaseNotes = notes
}
void windowsInstaller(String installer) {
windowsInstaller = installer
}
void stable(boolean b) {
stable = b
}
}