using System; using System.Collections.Generic; namespace administration.Models.HelloFresh; public partial class HistoriqueRecette { public int Id { get; set; } public string RecetteId { get; set; } = ""; // <-- string pour matcher Recette.Id public int UserId { get; set; } public DateOnly DateHistorique { get; set; } }