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

io.dekorate.application.config.Icon Maven / Gradle / Ivy

There is a newer version: 2.0.0.beta8
Show newest version
package io.dekorate.application.config;

import java.lang.String;
import io.sundr.builder.annotations.Buildable;

@Buildable(builderPackage = "io.dekorate.deps.kubernetes.api.builder") public class Icon{

    private String type;
    private String src;
    private String size;

    public Icon(){
    }
    public Icon(String type,String src,String size){
            this.type = type;
            this.src = src;
            this.size = size;
    }

    public String getType(){
            return this.type;
    }

    public String getSrc(){
            return this.src;
    }

    public String getSize(){
            return this.size;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy