blob: 3c12171356168f25be4108d5acda197516d3941b [file] [log] [blame]
using System.Collections;
namespace Nexus.Core
{
/// <summary>
/// A list of a set of Fields, such as displayed as the result of a query.
/// </summary>
public interface IEntryList : IList
{
/// <summary>
/// Create and Insert a new entry object at index 0.
/// </summary>
object Insert(string key);
/// <summary>
/// Add a entry object based on an IDictionary.
/// </summary>
/// <param name="row"></param>
void AddEntry(IDictionary row);
}
}