mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
14 lines
298 B
C#
14 lines
298 B
C#
using MongoDB.Bson;
|
|
using ShoppingAssistantApi.Domain.Common;
|
|
|
|
namespace ShoppingAssistantApi.Domain.Entities;
|
|
|
|
public class Message : EntityBase
|
|
{
|
|
public required string Text { get; set; }
|
|
|
|
public required string Role { get; set; }
|
|
|
|
public required ObjectId WishlistId { get; set; }
|
|
}
|