mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-11 01:18:50 +00:00
14 lines
358 B
C#
14 lines
358 B
C#
using MongoDB.Bson;
|
|
using ShoppingAssistantApi.Domain.Common;
|
|
|
|
namespace ShoppingAssistantApi.Domain.Entities;
|
|
|
|
public class Wishlist : EntityBase
|
|
{
|
|
public required string Name { get; set; }
|
|
public required string Type { get; set; }
|
|
public ICollection<Message>? Messages { get; set; } = null;
|
|
|
|
public required ObjectId UserId { get; set; }
|
|
}
|