mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-11 01:18:50 +00:00
21 lines
472 B
C#
21 lines
472 B
C#
using MongoDB.Bson;
|
|
using ShoppingAssistantApi.Domain.Common;
|
|
|
|
namespace ShoppingAssistantApi.Domain.Entities;
|
|
|
|
public class Product : EntityBase
|
|
{
|
|
public ObjectId WishlistId { get; set; }
|
|
|
|
public string? Url { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public double Rating { get; set; }
|
|
|
|
public string[]? ImagesUrls { get; set; }
|
|
|
|
public bool WasOpened { get; set; }
|
|
} |