Files
administration/Models/HelloFresh/Recette.cs
2025-09-03 20:17:50 +02:00

38 lines
781 B
C#

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; }
}