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; } }