mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-03 16:19:48 +00:00
12 lines
259 B
C#
12 lines
259 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;}
|
|
} |