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; } }