0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-web-client.git synced 2025-06-30 02:31:09 +00:00
shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/ProductModel.cs
2023-10-15 22:14:31 +00:00

20 lines
466 B
C#

namespace ShoppingAssistantWebClient.Web.Models;
public class ProductModel
{
public required string Id {get; set;}
public required string Url {get; set;}
public required string Name {get; set;}
public required string Description {get; set;}
public required double Rating {get; set;}
public required string[] ImagesUrls {get; set;}
public required bool WasOpened {get; set;}
public required string WishlistId {get; set;}
}