ShoppingApp/Weifer.ShoppingApp.API/Models/ShoppingItemDto.cs
2024-02-25 13:22:48 +01:00

12 lines
336 B
C#

namespace Weifer.ShoppingApp.API.Models
{
public class ShoppingItemDto
{
public Guid ShoppingItemId { get; set; }
public Guid ShoppingListId { get; set; }
public string Description { get; set; }
public int Number { get; set; } = 0;
public bool Purchased { get; set; } = false;
}
}