1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-11 20:05:04 -05:00
filebot/source/net/filebot/web/Datasource.java

16 lines
181 B
Java

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