Ajout de HelloFresh
This commit is contained in:
37
Models/HelloFresh/Recette.cs
Normal file
37
Models/HelloFresh/Recette.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user