mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-05 00:59:36 +00:00
14 lines
289 B
C#
14 lines
289 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 ObjectId WishlistId { get; set; }
|
|
}
|