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

7 lines
178 B
C#

namespace Seasoned.Backend.DTOs;
public class ChefConsultResponseDto
{
public string Reply { get; set; } = string.Empty;
public RecipeResponseDto? Recipe { get; set; }
}