* Extended functionalities

* Added different UIs
This commit is contained in:
2026-06-24 21:43:40 +02:00
parent 282f4864c4
commit f15bb7a916
348 changed files with 59057 additions and 498 deletions

View File

@@ -44,6 +44,16 @@ public class Recipe
[Column("IsActive")]
public bool IsActive { get; set; }
[Column("Source")]
[MaxLength(32)]
public string Source { get; set; } = "manual";
[Column("CreatedByUserId")]
public Guid? CreatedByUserId { get; set; }
[Column("IsDraft")]
public bool IsDraft { get; set; }
public ICollection<Ingredient> Ingredients { get; set; } = new List<Ingredient>();
public ICollection<RecipeStep> Steps { get; set; } = new List<RecipeStep>();
}