10 lines
190 B
Java
10 lines
190 B
Java
|
package mineplex.serverdata;
|
||
|
|
||
|
public interface Data
|
||
|
{
|
||
|
/**
|
||
|
* @return the unique id key representing this {@link Data} object in {@link DataRepository}s.
|
||
|
*/
|
||
|
public String getDataId();
|
||
|
}
|