save updated
This commit is contained in:
7
Seasoned.Backend/DTOs/RecipeUpdateDto.cs
Normal file
7
Seasoned.Backend/DTOs/RecipeUpdateDto.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user