22 lines
319 B
C#
22 lines
319 B
C#
using System;
|
|
|
|
namespace LLM.Facts
|
|
{
|
|
public enum FactOperationType
|
|
{
|
|
Add,
|
|
Update,
|
|
Delete
|
|
}
|
|
|
|
[Serializable]
|
|
public struct FactOperation
|
|
{
|
|
public FactOperationType type;
|
|
public string key;
|
|
public string value;
|
|
public string source;
|
|
}
|
|
}
|
|
|