Create Models for this Project
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user