aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/ChatConversationMessage.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/ChatConversationMessage.cs')
-rw-r--r--Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/ChatConversationMessage.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/ChatConversationMessage.cs b/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/ChatConversationMessage.cs
new file mode 100644
index 000000000..3c056a922
--- /dev/null
+++ b/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/ChatConversationMessage.cs
@@ -0,0 +1,17 @@
+using System.Text.Json.Serialization;
+
+namespace Tango.Portal.Chat.Web.Models
+{
+ public class ChatConversationMessage
+ {
+ public string ID { get; set; } = Guid.NewGuid().ToString();
+ public string SessionID { get; set; } = string.Empty;
+ public DateTime Time { get; set; }
+ public string Email { get; set; } = string.Empty;
+ public string User { get; set; } = string.Empty;
+ public string Role { get; set; } = string.Empty;
+ public string Classification { get; set; } = string.Empty;
+ public string Message { get; set; } = string.Empty;
+ public string Provider { get; set; } = string.Empty;
+ }
+}