com.github.houbb.web.common.dto.option.IOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-common Show documentation
Show all versions of web-common Show documentation
The web-common tool for java.
package com.github.houbb.web.common.dto.option;
import java.io.Serializable;
/**
* @author binbin.hou
* @since 0.0.1
*/
public interface IOption extends Serializable {
/**
* @since 0.0.1
* @return key
*/
String getKey();
/**
* @since 0.0.1
* @return label
*/
String getLabel();
}