io.github.kilmajster.blog.data.Post 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.data;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class Post {
private String title;
private String date;
private String content;
}