12 lines
425 B
C#
12 lines
425 B
C#
|
|
namespace BotSharp.Abstraction.Conversations.Models;
|
||
|
|
|
||
|
|
public class Session
|
||
|
|
{
|
||
|
|
public string Id { get; set; } = string.Empty;
|
||
|
|
public string AgentId { get; set; } = string.Empty;
|
||
|
|
public string UserId { get; set; } = string.Empty;
|
||
|
|
public string Title { get; set; } = string.Empty;
|
||
|
|
public DateTime UpdatedTime { get; set; } = DateTime.UtcNow;
|
||
|
|
public DateTime CreatedTime { get; set; } = DateTime.UtcNow;
|
||
|
|
}
|