shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/WishlistModel.cs
2023-10-15 22:14:31 +00:00

12 lines
264 B
C#

namespace ShoppingAssistantWebClient.Web.Models;
public class WishlistModel
{
public required string Id {get; set;}
public required string Name {get; set;}
public required string Type {get; set;}
public required string CreateById {get; set;}
}