10 lines
239 B
C#
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; }
|
|
}
|
|
}
|