Files
Seasoned/Seasoned.Backend/DTOs/RecipeResponseDto.cs
2026-03-12 20:17:25 +00:00

10 lines
314 B
C#

namespace Seasoned.Backend.DTOs;
public class RecipeResponseDto
{
public string Title { get; set; } = string.Empty;
public string Icon { get; set; } = "mdi-silverware-fork-knife";
public List<string> Ingredients { get; set; } = new();
public List<string> Instructions { get; set; } = new();
}