10 lines
247 B
C#
10 lines
247 B
C#
namespace administration.Models.HelloFresh.DTO;
|
|
|
|
public class IngredientItemDto
|
|
{
|
|
public string Name { get; set; } = "";
|
|
public string? Quantity { get; set; }
|
|
public string? Image { get; set; }
|
|
public bool Owned { get; set; }
|
|
}
|