1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-05 10:32:54 +00:00

erste Version

This commit is contained in:
Busfreak
2023-03-10 00:30:42 +01:00
parent 89153c391e
commit 9d66c42460
20 changed files with 1530 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package ATCCodes;
/**
* Common Agent Code definition
*
* @author Paul-Christian Volkmer
* @since 0.1.0
*/
public interface AgentCode extends Comparable<AgentCode> {
String getCode();
String getName();
CodeSystem getSystem();
}