shopping-assistant-api/ShoppingAssistantApi.Application/Models/Dtos/MessageDto.cs
2023-11-15 16:54:33 +02:00

13 lines
241 B
C#

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