aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/ChatConversationMessage.cs
blob: 3c056a922bb317c4003cf1ac07add7c2be2e57f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
    }
}