0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-api.git synced 2025-07-01 11:03:00 +00:00
shopping-assistant-api/ShoppingAssistantApi.Application/Models/Dtos/MessageDto.cs

13 lines
277 B
C#

namespace ShoppingAssistantApi.Application.Models.Dtos;
public class MessageDto
{
public required string Id { get; set; }
public required string Text { get; set; }
public required string Role { get; set; }
public string? CreatedById { get; set; } = null;
}