mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 20:05:04 -05:00
16 lines
181 B
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();
|
|
}
|
|
|
|
}
|