ShoppingApp/Weifer.ShoppingApp.API/Models/ShoppingListDot.cs

10 lines
239 B
C#
Raw Normal View History

2024-02-25 13:22:48 +01:00
namespace Weifer.ShoppingApp.API.Models
{
public class ShoppingListDot
{
public Guid ShoppingListId { get; set; }
public Guid CustomerId { get; set; }
public string ShoppingListName { get; set; }
}
}