Small cleanup.

This commit is contained in:
JesseBrault0709 2024-07-09 17:07:48 +02:00
parent 019210d334
commit 4779070142

View File

@ -1,21 +0,0 @@
package app.mealsmadeeasy.api.recipe.view;
public final class RecipeGetView {
private final long id;
private final String title;
public RecipeGetView(long id, String title) {
this.id = id;
this.title = title;
}
public long getId() {
return this.id;
}
public String getTitle() {
return this.title;
}
}