mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-11 01:18:50 +00:00
12 lines
276 B
C#
12 lines
276 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;
|
|
}
|