argos/dmp-backend/core/src/main/java/eu/eudat/model/tenantconfiguration/LogoTenantConfiguration.java

17 lines
372 B
Java
Raw Normal View History

2024-04-19 14:34:07 +02:00
package eu.eudat.model.tenantconfiguration;
2024-04-19 17:39:51 +02:00
import eu.eudat.model.StorageFile;
2024-04-19 14:34:07 +02:00
public class LogoTenantConfiguration {
2024-04-19 17:39:51 +02:00
private StorageFile storageFile;
public static final String _storageFile = "storageFile";
2024-04-19 14:34:07 +02:00
2024-04-19 17:39:51 +02:00
public StorageFile getStorageFile() {
return storageFile;
2024-04-19 14:34:07 +02:00
}
2024-04-19 17:39:51 +02:00
public void setStorageFile(StorageFile storageFile) {
this.storageFile = storageFile;
2024-04-19 14:34:07 +02:00
}
}