cn.handyplus.lib.param.TexturesParam Maven / Gradle / Ivy
The newest version!
package cn.handyplus.lib.param;
import lombok.Getter;
import lombok.Setter;
/**
* @author handy
*/
@Setter
@Getter
public class TexturesParam {
private TexturesParam.Textures textures;
@Setter
public static class Textures {
private TexturesParam.Skin SKIN;
}
@Setter
public static class Skin {
private String url;
}
/**
* 获取url
*
* @return url
*/
public String getUrl() {
return textures.SKIN.url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy