Last files for merge
This commit is contained in:
@@ -8,7 +8,7 @@ using Francesco.Recipes.World.Models.BackendModels.RecipeIngredient;
|
||||
public class Recipe : ITimeStampedEntity
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string? Description { get; set; }
|
||||
public Difficulty Difficulty { get; set; }
|
||||
public int Servings { get; set; }
|
||||
@@ -20,5 +20,5 @@ public class Recipe : ITimeStampedEntity
|
||||
public virtual ICollection<RecipeIngredient> RecipeIngredients { get; set; } = new List<RecipeIngredient>();
|
||||
public virtual ICollection<Instruction> Instructions { get; set; } = new List<Instruction>();
|
||||
public virtual ICollection<MediaFile> MediaFiles { get; set; } = new List<MediaFile>();
|
||||
public virtual Favorit Favorit { get; set; } = new();
|
||||
public virtual Favorit Favorit { get; set; } = new ();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user