12 lines
336 B
C#
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;
|
|||
|
}
|
|||
|
}
|