mirror of
https://dev.azure.com/tstanciu94/Chatbot/_git/Chatbot
synced 2025-06-21 20:48:22 +03:00
13 lines
275 B
C#
13 lines
275 B
C#
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; }
|
|
}
|
|
}
|