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