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