2024-10-08 00:39:13 +03:00
|
|
|
package Common;
|
2024-10-08 16:20:45 +03:00
|
|
|
import Common.Database.Objects.iDBObject;
|
2024-10-08 00:39:13 +03:00
|
|
|
import Common.Utils.TextLog;
|
|
|
|
|
|
|
|
|
|
import java.util.LinkedHashMap;
|
2024-10-09 23:37:58 +03:00
|
|
|
public interface Current_ {
|
2024-10-08 16:20:45 +03:00
|
|
|
default String getDescription(){
|
|
|
|
|
return "?";
|
|
|
|
|
}
|
2024-10-08 00:39:13 +03:00
|
|
|
}
|