AIMA-CSharp / Agent /Object /IObjectWithDynamicAttributes.cs
ewdlop's picture
Upload folder using huggingface_hub
90ca39a verified
using System.Collections.Generic;
namespace AIMA.Agent.Object
{
public interface IObjectWithDynamicAttributes
{
IReadOnlyDictionary<object, object> ReadOnlyAttributes { get;}
string DescribeType { get; }
string DescribeAttributes();
HashSet<object> GetKeySet();
void SetAttribute(object key, object value);
object GetAttribute(object key);
object RemoveAttribute(object key);
public IObjectWithDynamicAttributes Copy();
}
}