1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-04 10:02:55 +00:00

Issue #4: Service zum Ermitteln von Studien hinzugefügt

This commit is contained in:
2023-03-13 16:45:04 +01:00
parent 4a6055bc22
commit 90caad3041
3 changed files with 91 additions and 0 deletions

View File

@ -0,0 +1,31 @@
package DNPM.services;
public class Studie {
private final String code;
private final String shortDesc;
private final String description;
private final int version;
public Studie(final String code, final String shortDesc, final String description, final int version) {
this.code = code;
this.shortDesc = shortDesc;
this.description = description;
this.version = version;
}
public String getCode() {
return code;
}
public String getShortDesc() {
return shortDesc;
}
public String getDescription() {
return description;
}
public int getVersion() {
return version;
}
}