14 lines
265 B
C#
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; }
|
|
}
|