Add new Model Unit and changed some Logik to some Properties

This commit is contained in:
Francesco D'Amico
2025-01-08 11:27:07 +01:00
parent 6e9ce70355
commit 1f2344eabf
7 changed files with 21 additions and 25 deletions
@@ -4,8 +4,8 @@
public class Instruction
{
public Guid Id { get; set; }
public string? StepDescription { get; set; }
public string? StepNumber { get; set; }
public string Description { get; set; }
public string Number { get; set; }
public virtual Recipe Recipe { get; set; } = new();
}
}