namespace Seasoned.Backend.Models; public class Recipe { public int Id { get; set; } public string Title { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; public List Ingredients { get; set; } = new(); public List Instructions { get; set; } = new(); public DateTime CreatedAt { get; set; } = DateTime.UtcNow; }