summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/main/java/models/Version.java
blob: b44819e4242ffe28ced89e30d2223ba2af0c5be7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package models;

public class Version {
	
	private static String Version = "1.06";
	private static String BuildDate = "04.09.2014";
	
	
	public static String getVersion() {
		return Version;
	}
	public static void setVersion(String version) {
		Version = version;
	}
	public static String getBuildDate() {
		return BuildDate;
	}
	public static void setBuildDate(String buildDate) {
		BuildDate = buildDate;
	}

	
	
}