Create Models for this Project

This commit is contained in:
Francesco D'Amico
2025-01-06 17:00:05 +01:00
parent 9ac2428a1d
commit b80a402d15
8 changed files with 77 additions and 1 deletions
@@ -0,0 +1,11 @@
namespace Francesco.Recipes.World.Models.BackendModels.Instruction
{
using Francesco.Recipes.World.Models.BackendModels.Recipe;
public class Instruction
{
public Guid Id { get; set; }
public string? StepDescription { get; set; }
public string? StepNumber { get; set; }
public virtual Recipe Recipe { get; set; } = new();
}
}