mirror of
https://dev.azure.com/tstanciu94/Chatbot/_git/Chatbot
synced 2025-06-21 20:48:22 +03:00
15 lines
377 B
C#
15 lines
377 B
C#
using System;
|
|
|
|
namespace Chatbot.Api.Domain.Entities
|
|
{
|
|
public class BotSession
|
|
{
|
|
public Guid SessionId { get; set; }
|
|
public DateTime StartDate { get; set; }
|
|
public Guid BotId { get; set; }
|
|
public string ExternalId { get; set; }
|
|
public string ClientApplication { get; set; }
|
|
public string UserKey { get; set; }
|
|
}
|
|
}
|