15 lines
269 B
C#
15 lines
269 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; }
|
|
}
|
|
}
|