Files
Seasoned/Seasoned.Backend/DTOs/RecipeUpdateDto.cs
2026-03-19 02:35:49 +00:00

7 lines
247 B
C#

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; }
}