DB update
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
namespace Seasoned.Backend.Models;
|
||||
|
||||
public class Recipe
|
||||
{
|
||||
public class Recipe {
|
||||
public int Id { get; set; }
|
||||
public string Title { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public string? Description { get; set; }
|
||||
public List<string> Ingredients { get; set; } = new();
|
||||
public List<string> Instructions { get; set; } = new();
|
||||
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
||||
public DateTime CreatedAt { get; set; }
|
||||
public string? UserId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user