Initial commit

This commit is contained in:
2026-06-04 06:24:56 +02:00
commit 282f4864c4
111 changed files with 8083 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace MealPlan.Api.Models;
/// <summary>
/// Maps to the existing "RecipeSteps" table.
/// </summary>
[Table("RecipeSteps")]
public class RecipeStep
{
[Column("Id")]
public int Id { get; set; }
[Column("RecipeId")]
public int RecipeId { get; set; }
[Column("StepNumber")]
public int StepNumber { get; set; }
[Column("Description")]
public string Description { get; set; } = string.Empty;
public Recipe? Recipe { get; set; }
}