0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-web-client.git synced 2025-06-29 18:21:09 +00:00
shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/Wishlist.cs
2023-11-02 18:14:07 +00:00

12 lines
270 B
C#

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