ServerVersion
data class ServerVersion(val major: Int, val minor: Int, val patch: Int, val build: Int? = null) : Comparable<ServerVersion>
Model to help with Jellyfin server versions. Use fromString to parse strings. The format is similar to SemVer.