blob: 1c584a30a975d82d0669879facd76ba8b7f11752 [file] [log] [blame]
using System.Collections;
namespace Nexus.Core
{
/// <summary>
/// List KeyValue objects.
/// </summary>
public interface IKeyValueList : IList
{
string ValueFor(string key);
}
}