Add missing nullable annotation.

This commit is contained in:
Jesse Brault 2026-02-13 10:58:39 -06:00
parent 7f7714b7a3
commit 9c5b9a7150

View File

@ -13,7 +13,7 @@ import java.time.OffsetDateTime;
public class RecipeInfoView {
Integer id;
OffsetDateTime created;
OffsetDateTime modified;
@Nullable OffsetDateTime modified;
String slug;
String title;
@Nullable Integer preparationTime;