16 lines
250 B
C#
16 lines
250 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AICore.Prompt.Models
|
|
{
|
|
public class AiConversationContext
|
|
{
|
|
public string Name { get; set; }
|
|
public Dictionary<string, object> Filter { get; set; }
|
|
|
|
public AiConversationContext()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|