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

cn.k7g.alloy.mold.var.LinkVar Maven / Gradle / Ivy

package cn.k7g.alloy.mold.var;

import lombok.Getter;

/**
 * 常量值
 * @date  2021/2/5 下午1:46
 * @author victor-wu
 */
@Getter
public final class LinkVar extends AbsVar {
    private String text;
    public LinkVar(String url, String text) {
        super(null, "url", url);
        this.text = text;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy