Files
administration/Models/HelloFresh/Ingredient.cs
2025-09-16 22:20:21 +02:00

14 lines
265 B
C#

using System;
using System.Collections.Generic;
namespace administration.Models.HelloFresh;
public partial class Ingredient
{
public int Id { get; set; }
public string NameOwnedIngredients { get; set; } = null!;
public int UserId { get; set; }
}