namespace YesChef.Api.Entities; public class Recipe { public int Id { get; set; } public int FamilyId { get; set; } public Family Family { get; set; } = null!; public required string Title { get; set; } public string? Description { get; set; } public string? Instructions { get; set; } public int? Servings { get; set; } public string? SourceUrl { get; set; } public int CreatedByUserId { get; set; } public User CreatedByUser { get; set; } = null!; public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; public List Ingredients { get; set; } = []; }