BotSharp/BotSharp.Platform.Models/Contexts/AIContext.cs
2018-12-09 09:57:34 -06:00

24 lines
523 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models.Contexts
{
public class AIContext
{
public string Name { get; set; }
public Dictionary<string, object> Parameters { get; set; }
/// <summary>
/// Lifespan of the context measured in requests````
/// </summary>
public int Lifespan { get; set; }
public AIContext()
{
Parameters = new Dictionary<string, object>();
}
}
}