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