All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dankito.utils.Version.kt Maven / Gradle / Ivy

There is a newer version: 1.0.20
Show newest version
package net.dankito.utils


class Version(val major: Int, val minor: Int, val patch: Int = 0, val build: String? = null) {

    private constructor() : this(0, 0, 0) // for Jackson

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy