Ajout de HelloFresh

This commit is contained in:
2025-09-03 20:17:50 +02:00
parent bcef0a472b
commit d287112b7d
429 changed files with 82881 additions and 22074 deletions

View File

@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
namespace administration.Models.HelloFresh;
public partial class Recette
{
public string Id { get; set; } = null!;
public string? Name { get; set; }
public string? SupplementText { get; set; }
public string? Description { get; set; }
public string? Tags { get; set; }
public string? Ingredients { get; set; }
public int? Preference { get; set; }
public string? Image { get; set; }
public string? Difficulte { get; set; }
public int? TempsDePreparation { get; set; }
public string? Kcal { get; set; }
public string? Proteines { get; set; }
public string? Slug { get; set; }
public string? Pdf { get; set; }
public string? IngredientsToHad { get; set; }
}