chatbot/Chatbot.Domain/Entities/BotSession.cs

15 lines
377 B
C#
Raw Normal View History

2020-06-06 19:21:40 +03:00
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; }
}
}