11 lines
180 B
C#
11 lines
180 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AICore.Context.Summary
|
|
{
|
|
public abstract class BaseContextSummary
|
|
{
|
|
[JsonIgnore]
|
|
public object Context { get; set; }
|
|
}
|
|
}
|