1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-05 02:22:54 +00:00
Files
onkostar-plugin-dnpm/DNPMPlugins/src/main/java/ATCCodes/AgentCode.java
2023-03-10 00:30:42 +01:00

15 lines
246 B
Java

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();
}