BotSharp/BotSharp.Core/Models/Contexts/AIContext.cs

24 lines
523 B
C#
Raw Normal View History

2018-12-09 15:57:34 +00:00
using System;
using System.Collections.Generic;
using System.Text;
2018-12-09 15:57:34 +00:00
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>();
}
}
}