io.github.kilmajster.blog.config.MinimalBlog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minimal-blog-spring-boot-starter Show documentation
Show all versions of minimal-blog-spring-boot-starter Show documentation
Spring boot starter that provides simplest blog as possible! ⚡️
package io.github.kilmajster.blog.config;
import java.util.List;
import lombok.Builder;
import lombok.Data;
@Builder
@Data
public class MinimalBlog {
private String blogName;
private String blogDescription;
private String author;
private String aboutContent;
private List elsewhere;
private BlogType type;
private String resourcesRootDir;
private int postsOnPage;
@Builder
@Data
public static class Elsewhere {
private String name;
private String link;
}
}