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

10 lines
239 B
C#

namespace Weifer.ShoppingApp.API.Models
{
public class ShoppingListDot
{
public Guid ShoppingListId { get; set; }
public Guid CustomerId { get; set; }
public string ShoppingListName { get; set; }
}
}