cloud.chain.git.api.dto.Repos Maven / Gradle / Ivy
The newest version!
package cloud.chain.git.api.dto;
import lombok.Data;
/**
* wuXiaoMing
* 2023/2/19 13:32
*/
@Data
public class Repos {
/**
* The name of the repository
*/
private String name;
/**
* A short description of the repository
*/
private String description;
/**
* A URL with more information about the repository
*/
private String homepage;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy