chatbot/Chatbot.Api.Domain/Entities/Chat.cs

13 lines
275 B
C#
Raw Normal View History

2020-06-06 23:18:41 +03:00
using System;
namespace Chatbot.Api.Domain.Entities
{
public class Chat
{
public Guid ChatId { get; set; }
public Guid SessionId { get; set; }
public DateTime StartDate { get; set; }
public DateTime? StopDate { get; set; }
}
}