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

io.github.opensabre.boot.entity.SwaggerInfo Maven / Gradle / Ivy

The newest version!
package io.github.opensabre.boot.entity;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

@Data
@ConfigurationProperties(prefix = "opensabre.rest.swagger")
public class SwaggerInfo {
    private String version;
    private String title;
    private String description;
    private String licenseUrl;
    private String licenseName;
    private String wikiUrl;
    private String wikiDocumentation;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy