ShoppingApp/Weifer.ShoppingApp.API/Models/ShoppingItemDto.cs

12 lines
336 B
C#
Raw Permalink Normal View History

2024-02-25 13:22:48 +01:00
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;
}
}