All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fennec.sdk.model.commons.Link Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package org.fennec.sdk.model.commons;

import lombok.*;

/**
 * A link with an url, a name and a logo (url, svg, base64)
 */
@Getter
@Setter
@ToString
@EqualsAndHashCode
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class Link {

    /**
     * The link name
     */
    private String name;

    /**
     * The link url
     */
    private String url;

    /**
     * The link logo (url, svg, base64)
     */
    private String logo;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy