0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-web-client.git synced 2025-06-30 18:42:57 +00:00
shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/Messages.cs
2023-11-17 07:30:23 +00:00

24 lines
341 B
C#

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