Files
Seasoned/Seasoned.Backend/DTOs/RecipeResponseDto.cs
2026-03-11 05:04:48 +00:00

9 lines
309 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();
}