mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
20 lines
448 B
C#
20 lines
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShoppingAssistantWebClient.Web.Models
|
|
{
|
|
public class TopDealsProduct
|
|
{
|
|
public required string Id {get; set;}
|
|
|
|
public required string Name {get; set;}
|
|
|
|
public required double Price { get; set; }
|
|
|
|
public required string ImagesUrls {get; set;}
|
|
|
|
public required string Url {get; set;}
|
|
}
|
|
} |