mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-29 19:07:33 +00:00
14 lines
232 B
Java
14 lines
232 B
Java
package com.linkedin.metadata.config;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
@Data
|
|
public class AssetsConfiguration {
|
|
/**
|
|
* The url of the logo to render in the DataHub Application.
|
|
*/
|
|
public String logoUrl;
|
|
public String faviconUrl;
|
|
}
|