com.bimface.sdk.bean.request.ProjectCreateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bimface-java-sdk Show documentation
Show all versions of bimface-java-sdk Show documentation
Bimface provide the required call java sdk.
The newest version!
package com.bimface.sdk.bean.request;
import com.bimface.bdfs.enums.ProjectType;
/**
* Created by tangj-i on 2023/3/27.
*/
public class ProjectCreateRequest {
/**
* 项目名称
*/
private String name;
/**
* 项目信息
*/
private String info;
/**
* 项目缩略图
*/
private String thumbnail;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getInfo() {
return info;
}
public void setInfo(String info) {
this.info = info;
}
public String getThumbnail() {
return thumbnail;
}
public void setThumbnail(String thumbnail) {
this.thumbnail = thumbnail;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy