1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/source/net/filebot/web/Datasource.java

16 lines
187 B
Java

package net.filebot.web;
import javax.swing.Icon;
public interface Datasource {
String getIdentifier();
Icon getIcon();
default String getName() {
return getIdentifier();
}
}