using System.Collections; namespace Nexus.Core { /// /// A list of a set of Fields, such as displayed as the result of a query. /// public interface IEntryList : IList { /// /// Create and Insert a new entry object at index 0. /// object Insert(string key); /// /// Add a entry object based on an IDictionary. /// /// void AddEntry(IDictionary row); } }