import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ApiModel(description = "Model retrieved from library system")
public class Book {
@ApiModelProperty(notes = "Title of the book", example = "Inside of this hell")
private String title;
@ApiModelProperty(notes = "Author of the book", example = "Stefan P.")
private String author;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
}
Created
December 18, 2024 23:16
-
-
Save jrichardsz/957aa3cfc387f955ab1065ebe27111be to your computer and use it in GitHub Desktop.
swagger implementations tips
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment