save updated

This commit is contained in:
2026-03-19 02:35:49 +00:00
parent f6199855fb
commit 5f15d92903
3 changed files with 25 additions and 14 deletions

View File

@@ -0,0 +1,7 @@
public class RecipeUpdateDto
{
public string Title { get; set; } = string.Empty;
public List<string> Ingredients { get; set; } = new();
public List<string> Instructions { get; set; } = new();
public string? ImageUrl { get; set; }
}