mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
23 lines
443 B
C#
23 lines
443 B
C#
using MongoDB.Bson;
|
|
using ShoppingAssistantApi.Domain.Common;
|
|
|
|
namespace ShoppingAssistantApi.Domain.Entities;
|
|
|
|
public class Product : EntityBase
|
|
{
|
|
|
|
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; }
|
|
|
|
public ObjectId WishlistId { get; set; }
|
|
}
|