0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-web-client.git synced 2025-07-05 21:43:57 +00:00
shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/Messages.cs
2023-11-05 16:18:31 +00:00

15 lines
316 B
C#

namespace ShoppingAssistantWebClient.Web.Models
{
public class Messages
{
public required string Id { get; set; }
public required string Text { get; set; }
public required string Role { get; set; }
public required string CreatedById { get; set; }
}
}