aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/ChatConversationMessage.cs
blob: 8659352308a14f8107d9fc9046035638e0963257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
        public string Assumptions { get; set; } = string.Empty;
    }
}