easyeat/backend/API/Models/ShoppingListModels/ShoppingListItemDTO.cs
2025-04-29 12:31:40 +02:00

15 lines
267 B
C#

namespace API.Models.ShoppingListModels
{
public class ShoppingListItemDTO
{
public string Name { get; set; }
public double Amount { get; set; }
public string Unit { get; set; }
public bool Checked { get; set; }
}
}